Logo
Explore Help
Sign In
izzy/UnrealEngineUWP
0
0
Fork 0
You've already forked UnrealEngineUWP
mirror of https://github.com/izzy2lost/UnrealEngineUWP.git synced 2026-03-26 18:15:20 -07:00
Code Issues Packages Projects Releases Wiki Activity
Files
e425c856daa00a2165927fbb0a67e2fb6371614c
UnrealEngineUWP/Engine/Source/Runtime/MathCore/MathCore.Build.cs

20 lines
377 B
C#
Raw Normal View History

Created MathCore module, a module meant to regroup all math utils that are not generic enough that they should be in Core (in order not to bloat it) or owned by the foundation team : * Moved directed graph utils from audio to core, in namespace UE::MathCore::Graph * Renamed Depth/BreadthFirstTraversal to Depth/BreadthFirstNodeTraversal and added Depth/BreadthFirstEdgeTraversal to traverse the graph edges * Added FindLeaves method to retrieve graph nodes with no children from a starting node Created MathCoreTests low-level test executable : * Moved directed graph unit tests there * Enabled on CIS on all platforms #tests low-level tests #rb chris.constantinescu, danny.couture, phil.popp, johan.torp [CL 31680629 by jonathan bard in ue5-main branch]
2024-02-21 09:41:51 -05:00
// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class MathCore : ModuleRules
{
public MathCore(ReadOnlyTargetRules Target) : base(Target)
{
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
PublicDependencyModuleNames.AddRange(
new string[] {
"Core"
}
);
UnsafeTypeCastWarningLevel = WarningLevel.Error;
}
}
Reference in New Issue Copy Permalink
Powered by Gitea Page: 1212ms Template: 5ms
English
English
Licenses API