UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
NURBSCurveData.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2#pragma once
3
4#include "Core/Types.h"
5#include "Math/Point.h"
6
7namespace UE::CADKernel
8{
9struct FNurbsCurveData
10{
11 bool bIsRational;
12 int32 Dimension = 0;
13
14 int32 Degree = 0;
16
19};
20} // namespace UE::CADKernel
21
FPlatformTypes::int32 int32
A 32-bit signed integer.
Definition Platform.h:1125
Definition Array.h:670
Definition CADEntity.cpp:23
TArray< double > NodalVector
Definition NURBSCurve.h:15
int32 Degree
Definition NURBSCurve.h:14
TArray< double > Weights
Definition NURBSCurve.h:17
int32 Dimension
Definition NURBSCurve.h:12
bool bIsRational
Definition NURBSCurve.h:11
TArray< FVector > Poles
Definition NURBSCurve.h:18