Class UBoxPointBlueprintLibrary
Class UBoxPointBlueprintLibrary
- Defined in File BoxPointBlueprintLibrary.h
Inheritance Relationships
Base Type
public UBlueprintFunctionLibrary
class UBoxPointBlueprintLibrary : public UBlueprintFunctionLibrarySource: 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
| Symbol | Details |
|---|---|
ArrayToBoxPoint | Converts an array of float values to a box (continuous) point. |
ArrayToBoxPointShaped | Converts an array of float values to a box (continuous) point with a specific shape. |
BoxPointToArray | Converts a box point to an array of float values. |
ArrayToBoxPoint
static TInstancedStruct<FBoxPoint>ArrayToBoxPoint(const TArray<float> &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.
| # | Direction | Name | Type | Description |
|---|---|---|---|---|
| 1 | — | InValues | const TArray< float > & | 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<FBoxPoint>ArrayToBoxPointShaped(const TArray<float> &InValues, const TArray<int> &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.
| # | Direction | Name | Type | Description |
|---|---|---|---|---|
| 1 | — | InValues | const TArray< float > & | Array of float values representing continuous values. |
| 2 | — | InShape | const TArray< int > & | 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<float>BoxPointToArray(const TInstancedStruct<FBoxPoint> &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.
| # | Direction | Name | Type | Description |
|---|---|---|---|---|
| 1 | — | InBoxPoint | const TInstancedStruct< FBoxPoint > & | 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