UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
VectorND.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2#pragma once
3
4#include "Chaos/Array.h"
5
6namespace Chaos
7{
8template<class T>
9class VectorND : public TArray<T>
10{
11 public:
12 using TArray<T>::SetNum;
13
15 {
16 SetNum(Size);
17 }
18};
19}
FPlatformTypes::int32 int32
A 32-bit signed integer.
Definition Platform.h:1125
uint32 Size
Definition VulkanMemory.cpp:4034
Definition VectorND.h:10
VectorND(const int32 Size)
Definition VectorND.h:14
Definition Array.h:670
void SetNum(SizeType NewNum, EAllowShrinking AllowShrinking=UE::Core::Private::AllowShrinkingByDefault< AllocatorType >())
Definition Array.h:2308
Definition SkeletalMeshComponent.h:307