 | CMATHCrossProduct Method |
Cross product of two vectors.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic static void CrossProduct(
CGXNETCore gxNetShared,
double x1,
double y1,
double z1,
double x2,
double y2,
double z2,
ref double x3,
ref double y3,
ref double z3
)
public static void CrossProduct(
CGXNETCore gxNetShared,
double x1,
double y1,
double z1,
double x2,
double y2,
double z2,
ref double x3,
ref double y3,
ref double z3
)
Public Shared Sub CrossProduct (
gxNetShared As CGXNETCore,
x1 As Double,
y1 As Double,
z1 As Double,
x2 As Double,
y2 As Double,
z2 As Double,
ByRef x3 As Double,
ByRef y3 As Double,
ByRef z3 As Double
)
Public Shared Sub CrossProduct (
gxNetShared As CGXNETCore,
x1 As Double,
y1 As Double,
z1 As Double,
x2 As Double,
y2 As Double,
z2 As Double,
ByRef x3 As Double,
ByRef y3 As Double,
ByRef z3 As Double
)
public:
static void CrossProduct(
CGXNETCore^ gxNetShared,
double x1,
double y1,
double z1,
double x2,
double y2,
double z2,
double% x3,
double% y3,
double% z3
)
public:
static void CrossProduct(
CGXNETCore^ gxNetShared,
double x1,
double y1,
double z1,
double x2,
double y2,
double z2,
double% x3,
double% y3,
double% z3
)
static member CrossProduct :
gxNetShared : CGXNETCore *
x1 : float *
y1 : float *
z1 : float *
x2 : float *
y2 : float *
z2 : float *
x3 : float byref *
y3 : float byref *
z3 : float byref -> unit
static member CrossProduct :
gxNetShared : CGXNETCore *
x1 : float *
y1 : float *
z1 : float *
x2 : float *
y2 : float *
z2 : float *
x3 : float byref *
y3 : float byref *
z3 : float byref -> unit
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - x1
- Type: SystemDouble
X1 component - y1
- Type: SystemDouble
Y1 component - z1
- Type: SystemDouble
Z1 component - x2
- Type: SystemDouble
X2 component - y2
- Type: SystemDouble
Y2 component - z2
- Type: SystemDouble
Z2 component - x3
- Type: SystemDouble
X3 component (output) - y3
- Type: SystemDouble
Y3 component (output) - z3
- Type: SystemDouble
Z3 component (output)
See Also