Represents the floating point precision used for certain builtin operations e.g. sin/cos.
| Property | Description |
|---|---|
| Standard | Use the default target floating point precision - FloatPrecision.Medium. |
| High | Compute with an accuracy of 1 ULP - highly accurate, but increased runtime as a result, should not be required for most purposes. |
| Medium | Compute with an accuracy of 3.5 ULP - considered acceptable accuracy for most tasks. |
| Low | Compute with an accuracy lower than or equal to FloatPrecision.Medium, with some range restrictions (defined per function). |