 | CMATHrDotProduct3D Method |
Compute Dot product of two vectors.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic static double rDotProduct3D(
CGXNETCore gxNetShared,
double x1,
double y1,
double z1,
double x2,
double y2,
double z2
)
public static double rDotProduct3D(
CGXNETCore gxNetShared,
double x1,
double y1,
double z1,
double x2,
double y2,
double z2
)
Public Shared Function rDotProduct3D (
gxNetShared As CGXNETCore,
x1 As Double,
y1 As Double,
z1 As Double,
x2 As Double,
y2 As Double,
z2 As Double
) As Double
Public Shared Function rDotProduct3D (
gxNetShared As CGXNETCore,
x1 As Double,
y1 As Double,
z1 As Double,
x2 As Double,
y2 As Double,
z2 As Double
) As Double
public:
static double rDotProduct3D(
CGXNETCore^ gxNetShared,
double x1,
double y1,
double z1,
double x2,
double y2,
double z2
)
public:
static double rDotProduct3D(
CGXNETCore^ gxNetShared,
double x1,
double y1,
double z1,
double x2,
double y2,
double z2
)
static member rDotProduct3D :
gxNetShared : CGXNETCore *
x1 : float *
y1 : float *
z1 : float *
x2 : float *
y2 : float *
z2 : float -> float
static member rDotProduct3D :
gxNetShared : CGXNETCore *
x1 : float *
y1 : float *
z1 : float *
x2 : float *
y2 : float *
z2 : float -> float
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
Return Value
Type:
DoubleDot product
See Also