Files
UnrealEngineUWP/Engine/Source/Runtime/Datasmith/CADKernel/Base/Private/UI/Visu.cpp
jeanluc corenthin c4e44debb7 Moved CADKernel library code from /Engine/Source/Runtime/Datasmith/CADKernel to /Engine/Source/Runtime/Datasmith/CADKernel/Base
This is in preparation of the creation of a CADKernelEngine module

#rb jeanluc.corenthin
#rnx

[CL 34739992 by jeanluc corenthin in ue5-main branch]
2024-06-28 11:21:20 -04:00

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
};
}