Description
Sets the pointing method to 3DModel.
Syntax
Parameters
See Also
Example
Define location on 3D model
[C#] |
---|
// Set pointing type to 3d model
sensor.SetPointingType(AgESnPointing.eSnPt3DModel);
// Point to model attach point (in this example: "SolarPanels")
IAgSnPt3DModel model = sensor.CommonTasks.SetPointing3DModel("SolarPanels");
|
|
Define location on 3D model
[Visual Basic .NET] |
---|
' Set pointing type to 3d model
sensor.SetPointingType(AgESnPointing.eSnPt3DModel)
' Point to model attach point (in this example: "SolarPanels")
Dim model As IAgSnPt3DModel = sensor.CommonTasks.SetPointing3DModel("SolarPanels")
|
|