SCNVector4.Div Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Name | Description |
|---|---|
| Div(SCNVector4, NFloat) |
Divide a vector by a scalar |
| Div(SCNVector4, Single) |
Divide a vector by a scalar |
| Div(SCNVector4, NFloat, SCNVector4) |
Divide a vector by a scalar |
| Div(SCNVector4, Single, SCNVector4) |
Divide a vector by a scalar |
Div(SCNVector4, NFloat)
Divide a vector by a scalar
public static SceneKit.SCNVector4 Div(SceneKit.SCNVector4 a, System.Runtime.InteropServices.NFloat f);
static member Div : SceneKit.SCNVector4 * System.Runtime.InteropServices.NFloat -> SceneKit.SCNVector4
Parameters
Vector operand
- f
- NFloat
Scalar operand
Returns
Result of the division
Applies to
Div(SCNVector4, Single)
Divide a vector by a scalar
public static SceneKit.SCNVector4 Div(SceneKit.SCNVector4 a, float f);
static member Div : SceneKit.SCNVector4 * single -> SceneKit.SCNVector4
Parameters
Vector operand
- f
- Single
Scalar operand
Returns
Result of the division
Applies to
Div(SCNVector4, NFloat, SCNVector4)
Divide a vector by a scalar
public static void Div(ref SceneKit.SCNVector4 a, System.Runtime.InteropServices.NFloat f, out SceneKit.SCNVector4 result);
static member Div : SCNVector4 * System.Runtime.InteropServices.NFloat * SCNVector4 -> unit
Parameters
Vector operand
- f
- NFloat
Scalar operand
- result
- SCNVector4
Result of the division
Applies to
Div(SCNVector4, Single, SCNVector4)
Divide a vector by a scalar
public static void Div(ref SceneKit.SCNVector4 a, float f, out SceneKit.SCNVector4 result);
static member Div : SCNVector4 * single * SCNVector4 -> unit
Parameters
Vector operand
- f
- Single
Scalar operand
- result
- SCNVector4
Result of the division