You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
This is in preparation of the creation of a CADKernelEngine module #rb jeanluc.corenthin #rnx [CL 34739992 by jeanluc corenthin in ue5-main branch]
41 lines
695 B
C++
41 lines
695 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "UI/Visu.h"
|
|
|
|
namespace UE::CADKernel
|
|
{
|
|
const TCHAR* VisuPropertyNames[] =
|
|
{
|
|
TEXT("Bounding Box"),
|
|
TEXT("Points"),
|
|
TEXT("Elements"),
|
|
TEXT("Curves"),
|
|
TEXT("Iso"),
|
|
TEXT("Control Lines"),
|
|
TEXT("Edges"),
|
|
TEXT("Nodes"),
|
|
TEXT("Border Edges"),
|
|
TEXT("Multiple Edges"),
|
|
TEXT("Geometrical Borders"),
|
|
TEXT("Control Points"),
|
|
|
|
TEXT("YellowPoint"),
|
|
TEXT("YellowCurve"),
|
|
TEXT("BluePoint"),
|
|
TEXT("BlueCurve"),
|
|
TEXT("RedPoint"),
|
|
TEXT("RedCurve"),
|
|
TEXT("PurplePoint"),
|
|
TEXT("PurpleCurve"),
|
|
TEXT("GreenPoint"),
|
|
TEXT("GreenCurve"),
|
|
TEXT("PinkPoint"),
|
|
TEXT("PinkCurve"),
|
|
TEXT("OrangePoint"),
|
|
TEXT("OrangeCurve"),
|
|
nullptr
|
|
};
|
|
|
|
|
|
}
|