Home
last modified time | relevance | path

Searched refs:GfPlane (Results 1 – 9 of 9) sorted by relevance

/dports/misc/usd/USD-21.11/pxr/base/gf/
H A Dplane.h52 class GfPlane
57 GfPlane() { in GfPlane() function
63 GfPlane(const GfVec3d &normal, double distanceToOrigin) { in GfPlane() function
70 GfPlane(const GfVec3d &normal, const GfVec3d &point) { in GfPlane() function
78 GfPlane(const GfVec3d &p0, const GfVec3d &p1, const GfVec3d &p2) { in GfPlane() function
84 GfPlane(const GfVec4d &eqn) { in GfPlane() function
133 bool operator ==(const GfPlane &p) const {
140 bool operator !=(const GfPlane &p) const {
158 GfPlane & Transform(const GfMatrix4d &matrix);
207 bool GfFitPlaneToPoints(const std::vector<GfVec3d>& points, GfPlane* fitPlane);
[all …]
H A Dplane.cpp43 TfType::Define<GfPlane>(); in TF_REGISTRY_FUNCTION()
48 GfPlane::Set(const GfVec3d &normal, const GfVec3d &point) in Set()
55 GfPlane::Set(const GfVec3d &p0, const GfVec3d &p1, const GfVec3d &p2) in Set()
62 GfPlane::Set(const GfVec4d &eqn) in Set()
76 GfPlane::GetEquation() const in GetEquation()
81 GfPlane &
82 GfPlane::Transform(const GfMatrix4d &matrix) in Transform()
95 GfPlane::IntersectsPositiveHalfSpace(const GfRange3d &box) const in IntersectsPositiveHalfSpace()
119 GfFitPlaneToPoints(const std::vector<GfVec3d>& points, GfPlane* fitPlane) in GfFitPlaneToPoints()
248 operator<<(std::ostream& out, const GfPlane& p) in operator <<()
H A Dfrustum.cpp896 for (GfPlane localPlane: *_planes) { in Intersects()
914 for (GfPlane plane: *_planes) { in Intersects()
967 const GfPlane & plane = planes[i]; in _SegmentIntersects()
1116 std::unique_ptr<std::array<GfPlane, 6>> in _CalculateFrustumPlanes()
1117 newPlanesOwner(new std::array<GfPlane, 6>); in _CalculateFrustumPlanes()
1188 newPlanes[0] = GfPlane(vp, lb, lt); // Left in _CalculateFrustumPlanes()
1189 newPlanes[1] = GfPlane(vp, rt, rb); // Right in _CalculateFrustumPlanes()
1190 newPlanes[2] = GfPlane(vp, rb, lb); // Bottom in _CalculateFrustumPlanes()
1191 newPlanes[3] = GfPlane(vp, lt, rt); // Top in _CalculateFrustumPlanes()
1192 newPlanes[4] = GfPlane(rb, lb, lt); // Near in _CalculateFrustumPlanes()
[all …]
H A DwrapPlane.cpp50 static string _Repr(GfPlane const &self) { in _Repr()
56 GfPlane plane; in _FitPlaneToPoints()
64 typedef GfPlane This; in wrapPlane()
H A Dray.h43 class GfPlane; variable
169 bool Intersect(const GfPlane &plane, double *distance = NULL,
H A Dfrustum.h118 _planes = new std::array<GfPlane, 6>(*planes); in GfFrustum()
165 _planes.store(new std::array<GfPlane, 6>(*planes),
676 mutable std::atomic<std::array<GfPlane, 6> *> _planes;
H A Ddeclare.h42 class GfPlane; variable
H A Dray.cpp166 GfPlane plane(p0, p1, p2); in Intersect()
249 GfRay::Intersect(const GfPlane &plane, in Intersect()
H A DwrapRay.cpp101 IntersectHelper2( const GfRay &self, const GfPlane &plane ) in IntersectHelper2()