|
RayMeshIntersectionTryGetPoint Method
|
Get the value associated with the face mesh index.
Namespace:
Karamba.Results.ShellSection
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntaxpublic bool TryGetPoint(
int faceIndex,
out Point3 pt
)
Public Function TryGetPoint (
faceIndex As Integer,
<OutAttribute> ByRef pt As Point3
) As Boolean
public:
bool TryGetPoint(
int faceIndex,
[OutAttribute] Point3% pt
)
member TryGetPoint :
faceIndex : int *
pt : Point3 byref -> bool
Parameters
- faceIndex
- Type: SystemInt32
The face mesh index of the point to get. - pt
- Type: Karamba.GeometryPoint3
When the method returns, contains the value associated with the specified face index,
if the face index is found; otherwise, the default value for the Point3.
This parameter is passed unitializied.
Return Value
Type:
Boolean if
Intersection contains
a
Point3 with the specified face index.
otherwise.
See Also