Lines Matching full:point3d
8 } Point3D; typedef
96 struct Point3D createPoint3D(float x, float y, float z) SWIFT_NAME("Point3D.init(x:y:z:)"); struct
97 struct Point3D rotatePoint3D(Point3D point, float radians) SWIFT_NAME("Point3D.rotate(self:radians:… struct
98 struct Point3D badRotatePoint3D(Point3D point, float radians) SWIFT_NAME("Point3D.rotate(radians:)"… struct
101 extern struct Point3D identityPoint SWIFT_NAME("Point3D.identity"); struct
103 float Point3DGetMagnitude(Point3D point) SWIFT_NAME("getter:Point3D.magnitude(self:)");
104 float Point3DGetMagnitudeAndSomethingElse(Point3D point, float f) SWIFT_NAME("getter:Point3D.magnit…
107 float Point3DGetRadius(Point3D point) SWIFT_NAME("getter:Point3D.radius(self:)");
108 void Point3DSetRadius(Point3D point, float radius) SWIFT_NAME("setter:Point3D.radius(self:newValue:…
110 float Point3DPreGetRadius(Point3D point) SWIFT_NAME("getter:Point3D.preRadius(self:)");
111 void Point3DPreSetRadius(float radius, Point3D point) SWIFT_NAME("setter:Point3D.preRadius(newValue…
113 void Point3DSetRadiusAndSomethingElse(Point3D point, float radius, float f) SWIFT_NAME("setter:Poin…
116 float Point3DGetComponent(Point3D point, unsigned index) SWIFT_NAME("getter:Point3D.subscript(self:…
117 float Point3DSetComponent(Point3D point, unsigned index, float value) SWIFT_NAME("setter:Point3D.su…
119 float Point3DGetMatrixComponent(Point3D point, unsigned x, unsigned y) SWIFT_NAME("getter:Point3D.s…
120 void Point3DSetMatrixComponent(Point3D point, unsigned x, float value, unsigned y) SWIFT_NAME("sett…
122 float Point3DSetWithoutNewValue(Point3D point, unsigned x, unsigned y) SWIFT_NAME("setter:Point3D.s…
125 float Point3DSubscriptButNotGetterSetter(Point3D point, unsigned x) SWIFT_NAME("Point3D.subscript(s…
128 void Point3DSubscriptSetterTwoNewValues(Point3D point, unsigned x, float a, float b) SWIFT_NAME("se…
131 float Point3DSubscriptGetterNewValue(Point3D point, unsigned x, float a, float b) SWIFT_NAME("gette…
134 void Point3DMethodWithNewValue(Point3D point, float newValue) SWIFT_NAME("Point3D.method(self:newVa…
135 void Point3DMethodWithNewValues(Point3D point, float newValue, float newValueB) SWIFT_NAME("Point3D…
137 float Point3DStaticSubscript(unsigned x) SWIFT_NAME("getter:Point3D.subscript(_:)");
140 float Point3DStaticSubscriptNoArgs(void) SWIFT_NAME("getter:Point3D.subscript()");
143 float Point3DPreGetComponent(Point3D point, unsigned index) SWIFT_NAME("getter:Point3D.subscript(se…
145 Point3D getCurrentPoint3D(void) SWIFT_NAME("getter:currentPoint3D()");
147 void setCurrentPoint3D(Point3D point) SWIFT_NAME("setter:currentPoint3D(newValue:)");
149 Point3D getLastPoint3D(void) SWIFT_NAME("getter:lastPoint3D()");
151 void setLastPoint3D(Point3D point) SWIFT_NAME("setter:lastPoint3D(newValue:)");
153 Point3D getZeroPoint(void) SWIFT_NAME("getter:Point3D.zero()");
154 void setZeroPoint(Point3D point) SWIFT_NAME("setter:Point3D.zero(newValue:)");
155 Point3D getZeroPointNoPrototype() SWIFT_NAME("getter:Point3D.zeroNoPrototype()");
158 Point3D badGetter1(int x) SWIFT_NAME("getter:bad1(_:)");
164 Point3D badGetter2(Point3D point) SWIFT_NAME("getter:bad2(_:))");
167 void badSetter2(Point3D point) SWIFT_NAME("setter:bad2(self:))");