Struct FDiscretePoint
- struct FDiscretePoint : public FPoint
-
Public Functions
- inline FDiscretePoint(const int *Data, int Num)
-
Construct a DiscretePoint from a raw array of ints.
- Parameters:
-
-
Data – [in] The raw array of ints, as a const ptr
-
Num – [in] The size of the array
-
- inline FDiscretePoint(TArray<int> &InitialValues)
-
Construct a DiscretePoint from a TArray of ints.
- Parameters:
-
InitialValues – [in] An Array of Ints to initialize the DiscretePoint with
- virtual void Accept(PointVisitor &Visitor)
- virtual void Accept(ConstPointVisitor &Visitor) const
- inline int operator[](int Index) const
-
Get the value of the DiscretePoint at the given index or dimension.
- Parameters:
-
Index – [in] The dimension to get the value at
- Returns:
-
the value at the given index or dimension