Skip to content

Class UBoxPointBlueprintLibrary

Class UBoxPointBlueprintLibrary

  • Defined in File BoxPointBlueprintLibrary.h

Inheritance Relationships

Base Type

  • public UBlueprintFunctionLibrary
class UBoxPointBlueprintLibrary : public UBlueprintFunctionLibrary

Source: Source/Schola/Public/Common/Points/Blueprint/BoxPointBlueprintLibrary.h

Dependencies: FBoxPoint

Blueprint oriented helper functions for creating & inspecting Box Point InstancedStructs.

This library provides utility functions for creating and manipulating Box (continuous) Point instances from within Blueprints. These return TInstancedStruct<FBoxPoint>.


Public Static Functions

SymbolDetails
ArrayToBoxPointConverts an array of float values to a box (continuous) point.
ArrayToBoxPointShapedConverts an array of float values to a box (continuous) point with a specific shape.
BoxPointToArrayConverts a box point to an array of float values.

ArrayToBoxPoint

static TInstancedStruct&lt;FBoxPoint&gt;
ArrayToBoxPoint(const TArray&lt;float&gt; &InValues)

Converts an array of float values to a box (continuous) point.

Parameters

InValues – [in] Array of float values representing continuous values in a box space.

Returns:

A new box point instance.

#DirectionNameTypeDescription
1InValuesconst TArray&lt; float &gt; &Array of float values representing continuous values in a box space.

Attributes: static

Source: Source/Schola/Public/Common/Points/Blueprint/BoxPointBlueprintLibrary.h

Implementation: Source/Schola/Private/Common/Points/Blueprint/BoxPointBlueprintLibrary.cpp

ArrayToBoxPointShaped

static TInstancedStruct&lt;FBoxPoint&gt;
ArrayToBoxPointShaped(const TArray&lt;float&gt; &InValues, const TArray&lt;int&gt; &InShape)

Converts an array of float values to a box (continuous) point with a specific shape.

Parameters

  • InValues – [in] Array of float values representing continuous values.

  • InShape – [in] The dimensional shape of the box point.

Returns:

A new shaped box point instance.

#DirectionNameTypeDescription
1InValuesconst TArray&lt; float &gt; &Array of float values representing continuous values.
2InShapeconst TArray&lt; int &gt; &The dimensional shape of the box point.

Attributes: static

Source: Source/Schola/Public/Common/Points/Blueprint/BoxPointBlueprintLibrary.h

Implementation: Source/Schola/Private/Common/Points/Blueprint/BoxPointBlueprintLibrary.cpp

BoxPointToArray

static TArray&lt;float&gt;
BoxPointToArray(const TInstancedStruct&lt;FBoxPoint&gt; &InBoxPoint)

Converts a box point to an array of float values.

Parameters

InBoxPoint – [in] The box point to convert.

Returns:

Array of float values from the box point.

#DirectionNameTypeDescription
1InBoxPointconst TInstancedStruct&lt; FBoxPoint &gt; &The box point to convert.

Attributes: static

Source: Source/Schola/Public/Common/Points/Blueprint/BoxPointBlueprintLibrary.h

Implementation: Source/Schola/Private/Common/Points/Blueprint/BoxPointBlueprintLibrary.cpp