DigitizerPlugInSendPoint Method |
If the digitizer is enabled, call this function to send a point to Rhino.
Call this function as much as you like. The digitizers that Rhino currently
supports send a point every 15 milliseconds or so. This function should be
called when users press or release any digitizer button.
Namespace:
Rhino.PlugIns
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 6.0
Syntax public void SendPoint(
Point3d point,
MouseButton mousebuttons,
bool shiftKey,
bool controlKey
)
Public Sub SendPoint (
point As Point3d,
mousebuttons As MouseButton,
shiftKey As Boolean,
controlKey As Boolean
)
Parameters
- point
- Type: Rhino.GeometryPoint3d
3d point in digitizer coordinates. - mousebuttons
- Type: Rhino.UIMouseButton
corresponding digitizer button is down. - shiftKey
- Type: SystemBoolean
true if the Shift keyboard key was pressed. Otherwise, false. - controlKey
- Type: SystemBoolean
true if the Control keyboard key was pressed. Otherwise, false.
See Also