Home
last modified time | relevance | path

Searched defs:Plane (Results 1 – 25 of 1046) sorted by relevance

12345678910>>...42

/dports/devel/godot-tools/godot-3.2.3-stable/modules/mono/glue/GodotSharp/GodotSharp/Core/
H A DPlane.cs20 private Vector3 _normal;
28 public Vector3 Normal
38 public real_t x property
54 public real_t y property
70 public real_t z property
96 public Vector3 Center
125 public Vector3 GetAnyPoint() in GetAnyPoint()
237 public Plane Normalized() in Normalized()
291 public Plane(real_t a, real_t b, real_t c, real_t d) in Plane() method
302 public Plane(Vector3 normal, real_t d) in Plane() argument
[all …]
/dports/devel/godot/godot-3.2.3-stable/modules/mono/glue/GodotSharp/GodotSharp/Core/
H A DPlane.cs20 private Vector3 _normal;
28 public Vector3 Normal
38 public real_t x property
54 public real_t y property
70 public real_t z property
96 public Vector3 Center
125 public Vector3 GetAnyPoint() in GetAnyPoint()
237 public Plane Normalized() in Normalized()
291 public Plane(real_t a, real_t b, real_t c, real_t d) in Plane() method
302 public Plane(Vector3 normal, real_t d) in Plane() method
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Numerics/System/Numerics/
H A DPlane.cs12 public struct Plane : IEquatable<Plane> struct
17 public Vector3 Normal;
21 public float D;
30 public Plane(float x, float y, float z, float d) in Plane() argument
41 public Plane(Vector3 normal, float d) in Plane() method
52 public Plane(Vector4 value) in Plane() method
118 public static Plane Normalize(Plane value) in Normalize()
315 public bool Equals(Plane other) in Equals()
336 public override bool Equals(object obj) in Equals()
350 public override string ToString() in ToString()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Numerics.Vectors/src/System/Numerics/
H A DPlane.cs13 public struct Plane : IEquatable<Plane> struct
18 public Vector3 Normal;
22 public float D;
31 public Plane(float x, float y, float z, float d) in Plane() argument
42 public Plane(Vector3 normal, float d) in Plane() method
53 public Plane(Vector4 value) in Plane() method
119 public static Plane Normalize(Plane value) in Normalize()
316 public bool Equals(Plane other) in Equals()
337 public override bool Equals(object obj) in Equals()
351 public override string ToString() in ToString()
[all …]
/dports/cad/meshdev/meshdev-0.5/src/
H A DPlane.h23 struct Plane struct
28 Plane() : n(0,0,0), h(0) {} in Plane() function
29 Plane( const Plane& p ) : n( p.n ), h( p.h ) {} in Plane() function
30 Plane( const Vector3d& n, const double& h ) : n( n ), h( h ) {} in Plane() function
/dports/multimedia/assimp/assimp-5.1.3/port/assimp_rs/src/structs/plane/
H A Dplane.rs2 struct Plane { struct
9 impl Plane { impl
15 ) -> Plane { in new()
/dports/math/moab/fathomteam-moab-7bde9dfb84a8/src/moab/
H A DBSPTree.hpp75 struct Plane { struct in moab::BSPTree
76 Plane() : coeff(0.0) {} in Plane() argument
77 Plane( const double n[3], double d ) : coeff(d) in Plane() function
80 Plane( double a, double b, double c, double d ) : coeff(d) in Plane() argument
83 Plane( Axis normal, double point_on_axis ) : coeff(-point_on_axis) in Plane() function
86 double norm[3]; //!< Unit normal of plane
98 bool below( const double point[3] ) const in below()
102 bool above( const double point[3] ) const in above()
105 double distance( const double point[3] ) const in distance()
109 void flip() in flip()
[all …]
/dports/cad/librepcb/librepcb-0.1.6/libs/librepcb/projecteditor/boardeditor/
H A Dboardclipboarddata.h158 struct Plane : public SerializableObject { struct
169 BI_Plane::ConnectStyle connectStyle; argument
170 Signal<Plane> onEdited; ///< Dummy event, not used argument
172 Plane(const Uuid& uuid, const GraphicsLayerName& layer, in Plane() argument
187 Plane(const SExpression& node, const Version& fileFormat) in Plane() function
218 bool operator!=(const Plane& rhs) noexcept { argument
/dports/science/chrono/chrono-7.0.1/src/chrono_distributed/collision/
H A DChBoundary.h73 struct Plane { struct
92 const Plane& plane); argument
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/swiftshader/src/Device/
H A DPlane.hpp22 struct Plane struct
24 float A;
25 float B;
26 float C;
27 float D;
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/swiftshader/src/Renderer/
H A DPlane.hpp24 struct Plane struct
26 float A;
27 float B;
28 float C;
29 float D;
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/swiftshader/src/Renderer/
H A DPlane.hpp24 struct Plane struct
26 float A;
27 float B;
28 float C;
29 float D;
/dports/www/grafana8/grafana-8.3.6/vendor/gonum.org/v1/gonum/spatial/kdtree/
H A Dpoints.go76 type Plane struct { struct
77 Dim
78 Points
85 func (p Plane) Less(i, j int) bool { return p.Points[i][p.Dim] < p.Points[j][p.Dim] }
86 func (p Plane) Pivot() int { return Partition(p, MedianOfRandoms(p, randoms)) }
87 func (p Plane) Slice(start, end int) SortSlicer { p.Points = p.Points[start:end]; return p }
88 … (p Plane) Swap(i, j int) { p.Points[i], p.Points[j] = p.Points[j], p.Points[i] }
/dports/graphics/qt5-3d/kde-qt3d-5.15.2p39/src/render/jobs/
H A Dfrustumcullingjob_p.h92 struct Q_AUTOTEST_EXPORT Plane struct
94 explicit Plane(const Vector4D &planeEquation) in Plane() argument
105 void cullScene(Entity *e, const Plane *planes); argument
/dports/x11/kf5-kwayland/kwayland-5.89.0/src/server/
H A Dlinuxdmabuf_v1_interface.h93 struct Plane { struct
94 int fd; /// The dmabuf file descriptor
95 uint32_t offset; /// The offset from the start of buffer
96 uint32_t stride; /// The distance from the start of a row to the next row in bytes
97 uint64_t modifier; /// The layout modifier
/dports/graphics/wrapland/wrapland-6a083c7bc9b37c5f756155e258b1fff4d24cea2a/server/
H A Dlinux_dmabuf_v1.h60 struct Plane { struct
61 int fd; /// The dmabuf file descriptor
62 uint32_t offset; /// The offset from the start of buffer
63 uint32_t stride; /// The distance from the start of a row to the next row in bytes
64 uint64_t modifier; /// The layout modifier
/dports/emulators/mess/mame-mame0226/3rdparty/bimg/3rdparty/nvtt/nvmath/
H A Dplane.inl12 inline Plane::Plane() {} function in nv::Plane
13 inline Plane::Plane(float x, float y, float z, float w) : v(x, y, z, w) {} function in nv::Plane
14 inline Plane::Plane(const Vector4 & v) : v(v) {} function in nv::Plane
15 inline Plane::Plane(const Vector3 & v, float d) : v(v, d) {} function in nv::Plane
16 …inline Plane::Plane(const Vector3 & normal, const Vector3 & point) : v(normal, -dot(normal, point)… function in nv::Plane
17 inline Plane::Plane(const Vector3 & v0, const Vector3 & v1, const Vector3 & v2) { function in nv::Plane
/dports/emulators/mame/mame-mame0226/3rdparty/bimg/3rdparty/nvtt/nvmath/
H A Dplane.inl12 inline Plane::Plane() {} function in nv::Plane
13 inline Plane::Plane(float x, float y, float z, float w) : v(x, y, z, w) {} function in nv::Plane
14 inline Plane::Plane(const Vector4 & v) : v(v) {} function in nv::Plane
15 inline Plane::Plane(const Vector3 & v, float d) : v(v, d) {} function in nv::Plane
16 …inline Plane::Plane(const Vector3 & normal, const Vector3 & point) : v(normal, -dot(normal, point)… function in nv::Plane
17 inline Plane::Plane(const Vector3 & v0, const Vector3 & v1, const Vector3 & v2) { function in nv::Plane
/dports/net-im/tg_owt/tg_owt-d578c76/src/third_party/openh264/src/test/
H A DBaseDecoderTest.h13 struct Plane { struct
21 Plane y; argument
/dports/games/xray_re-tools/xray_re-tools-52721d2/sources/3rd-party/nvtt/nvmath/
H A DPlane.h39 inline Plane::Plane() {} in Plane() function
40 inline Plane::Plane(float x, float y, float z, float w) : p(x, y, z, w) {} in Plane() function
41 inline Plane::Plane(Vector4::Arg v) : p(v) {} in Plane() function
42 inline Plane::Plane(Vector3::Arg v, float d) : p(v, d) {} in Plane() function
43 inline Plane::Plane(Vector3::Arg normal, Vector3::Arg point) : p(normal, dot(normal, point)) {} in Plane() function
/dports/games/0ad/0ad-0.0.23b-alpha/libraries/source/nvtt/src/src/nvmath/
H A DPlane.h39 inline Plane::Plane() {} in Plane() function
40 inline Plane::Plane(float x, float y, float z, float w) : p(x, y, z, w) {} in Plane() function
41 inline Plane::Plane(Vector4::Arg v) : p(v) {} in Plane() function
42 inline Plane::Plane(Vector3::Arg v, float d) : p(v, d) {} in Plane() function
43 inline Plane::Plane(Vector3::Arg normal, Vector3::Arg point) : p(normal, dot(normal, point)) {} in Plane() function
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/openh264/src/test/
H A DBaseDecoderTest.h13 struct Plane { struct
21 Plane y; argument
/dports/graphics/nvidia-texture-tools/nvidia-texture-tools-2.0.8/src/nvmath/
H A DPlane.h39 inline Plane::Plane() {} in Plane() function
40 inline Plane::Plane(float x, float y, float z, float w) : p(x, y, z, w) {} in Plane() function
41 inline Plane::Plane(Vector4::Arg v) : p(v) {} in Plane() function
42 inline Plane::Plane(Vector3::Arg v, float d) : p(v, d) {} in Plane() function
43 inline Plane::Plane(Vector3::Arg normal, Vector3::Arg point) : p(normal, dot(normal, point)) {} in Plane() function
/dports/multimedia/openh264/openh264-2.1.1/test/
H A DBaseDecoderTest.h13 struct Plane { struct
21 Plane y; argument
/dports/devel/godot-tools/godot-3.2.3-stable/core/math/
H A Dplane.h77 _FORCE_INLINE_ Plane() : in Plane() function
79 _FORCE_INLINE_ Plane(real_t p_a, real_t p_b, real_t p_c, real_t p_d) : in Plane() function
105 Plane::Plane(const Vector3 &p_normal, real_t p_d) : in Plane() function
110 Plane::Plane(const Vector3 &p_point, const Vector3 &p_normal) : in Plane() function
115 Plane::Plane(const Vector3 &p_point1, const Vector3 &p_point2, const Vector3 &p_point3, ClockDirect… in Plane() function

12345678910>>...42