Rename RNG-pertitnent members

This commit is contained in:
2024-05-31 15:16:53 -04:00
parent a0fa8f7200
commit d7bc11ca8e

View File

@@ -309,10 +309,10 @@ namespace J3ML::Geometry
/** This function computes the smallest possible AABB (in terms of volume) that contains the given sphere, and stores the result in this structure. */
void SetFrom(const Sphere &s);
Vector3 GetRandomPointInside(RNG& rng) const;
Vector3 GetRandomPointOnSurface(RNG& rng) const;
Vector3 GetRandomPointOnEdge(RNG& rng) const;
Vector3 GetRandomCornerPoint(RNG& rng) const;
Vector3 RandomPointInside(RNG& rng) const;
Vector3 RandomPointOnSurface(RNG& rng) const;
Vector3 RandomPointOnEdge(RNG& rng) const;
Vector3 RandomCornerPoint(RNG& rng) const;
/// Sets this structure to a degenerate AABB that does not have any volume.
/** This function is useful for initializing the AABB to "null" before a loop of calls to Enclose(),