Home
last modified time | relevance | path

Searched defs:BasePoint4D (Results 1 – 1 of 1) sorted by relevance

/third_party/rust/crates/bindgen/bindgen-tests/tests/
Dstylo.hpp74355 struct BasePoint4D { struct
74356 union {
74364 BasePoint4D() : x(0), y(0), z(0), w(0) {} in BasePoint4D() argument
74365 BasePoint4D(T aX, T aY, T aZ, T aW) : x(aX), y(aY), z(aZ), w(aW) {} in BasePoint4D() argument
74367 void MoveTo(T aX, T aY, T aZ, T aW) { x = aX; y = aY; z = aZ; w = aW; } in MoveTo()
74368 void MoveBy(T aDx, T aDy, T aDz, T aDw) { x += aDx; y += aDy; z += aDz; w += aDw; } in MoveBy()
74373 bool operator==(const Sub& aPoint) const { in operator ==()
74377 bool operator!=(const Sub& aPoint) const { in operator !=()
74382 Sub operator+(const Sub& aPoint) const { in operator +()
74385 Sub operator-(const Sub& aPoint) const { in operator -()
[all …]