-
Updated
Feb 21, 2021 - CMake
cmake
Here are 3,689 public repositories matching this topic...
We currently use a macro for writing down a money amount as a literal. We should move to a more modern C++ representation with a user defined literal like the below:
constexpr money32 operator"" _GBP(long double money)
{
return money * 10;
}
static_assert(MONEY(2, 40) == 2.40_GBP);
Go through the codebase and replace all MONEY macro uses with the equivalent version. You m
功能请求:快捷编辑(长按进入编辑界面)
-
Updated
Feb 20, 2021 - C++
-
Updated
Feb 21, 2021 - C++
Conan v2.0 will stop rewriting conanfile.py after scm substitution, it will always use scm_to_conandata=True. When the conanfile.py is not rewritten, functions that are evaluated when the recipe is loaded are quite inconvenient (these function might use some commands to get information from the SCM, but when the recipe is in the cache the SCM is no longer there).
An alternative for user
-
Updated
Jan 17, 2021 - CMake
Context
Stuff like the server host name and port are not intuitive to find at all. Right now I find it easier to open the Connect menu and click Edit on the server to get the information, while the actual Information menu should show this a lot clearer.
Describe the feature you have in mind
Improve the readability of the Information menu/dialog. Show information important to the user
-
Updated
Oct 13, 2020
-
Updated
Feb 20, 2021 - C++
Machine object should return a reference to themselves (like in sklearn)
auto machine = pipeline->over(std::make_shared<NormOne>())
->composite()
->over(std::make_shared<MulticlassLibLinear>())
->over(std::make_shared<MulticlassOCAS>())
->then(std-
Updated
Feb 21, 2021 - C++
-
Updated
Feb 20, 2021 - C++
-
Updated
Feb 11, 2021 - Shell
-
Updated
Feb 19, 2021 - CMake
-
Updated
Jan 5, 2021 - C++
Describe the feature you'd like
We should limit the miss angle to effectively be around 15 degrees.
Describe why do you think it is needed
Missing a target by 90 degrees just look stupid - a miss is a miss. Doesn't have to be that off
https://www.reddit.com/r/warzone2100/comments/gy87wg/rookie_units_are_as_helpful_as_ever/
-
Updated
Feb 15, 2021 - C
-
Updated
Feb 15, 2021 - C++
-
Updated
Dec 29, 2019 - C++
-
Updated
Feb 8, 2021 - C
-
Updated
Dec 4, 2020 - C++
-
Updated
Feb 20, 2021 - C
-
Updated
Feb 16, 2021 - CMake
Improve this page
Add a description, image, and links to the cmake topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the cmake topic, visit your repo's landing page and select "manage topics."
Required skills: Cython
Difficulty: Medium
Animation frames from AoE2 graphics files are packed into a texture atlas by the openage converter. We use bin packing to find the optimal arrangement (= smallest atlas dimensions) of the frames in the atlas. Bin packing becomes computationally intensive if a lot of frames are packed (look