| 37 | } |
| 38 | |
| 39 | FVector FPCGExGeo2DProjectionDetails::Project(const FVector& InPosition, const int32 PointIndex) const |
| 40 | { |
| 41 | return NormalGetter ? FQuat::FindBetweenNormals(NormalGetter->Read(PointIndex).GetSafeNormal(1E-08, FVector::UpVector), FVector::UpVector).RotateVector(InPosition) : |
| 42 | ProjectionQuat.RotateVector(InPosition); |
| 43 | } |
| 44 | |
| 45 | FVector FPCGExGeo2DProjectionDetails::Project(const FVector& InPosition) const |
| 46 | { |