| SbVec4sDivision Operator (SbVec4s, Int32) |
The division operator (/) divides each components of vector v1
by d.
Namespace: OIV.InventorAssembly: OIV.Inventor.SbLinear (in OIV.Inventor.SbLinear.dll) Version: 2026.1.0.Release.0310c5a2706944284e5b97cec8929e1e2f70c73d
Syntaxpublic static SbVec4s operator /(
SbVec4s v1,
int d
)
Public Shared Operator / (
v1 As SbVec4s,
d As Integer
) As SbVec4s
public:
static SbVec4s operator /(
SbVec4s v1,
int d
)
static let inline (/)
v1 : SbVec4s *
d : int : SbVec4sParameters
- v1
- Type: OIV.InventorSbVec4s
- d
- Type: SystemInt32
Return Value
Type:
SbVec4sResulting vector.
Exceptions| Exception | Condition |
|---|
| DivideByZeroException | If d equals to zero. |
See Also