MoveNodeConfigBuilders
interface which is accessible
through MoveNode.getConfigBuilders()
.@Deprecated public interface MoveNodeConfigFactory
Modifier and Type | Method and Description |
---|---|
MoveJMoveNodeConfig |
createMoveJConfig()
Deprecated.
Creates a default MoveJ shared values configuration.
|
MoveJMoveNodeConfig |
createMoveJConfig(MoveJMotionParameters moveJMotionParameters)
Deprecated.
Creates a MoveJ shared values configuration.
|
MoveJMotionParameters |
createMoveJMotionParameters(AngularSpeed jointSpeed,
ErrorHandler<AngularSpeed> jointSpeedErrorHandler,
AngularAcceleration jointAcceleration,
ErrorHandler<AngularAcceleration> jointAccelerationErrorHandler)
Deprecated.
Creates a shared motion parameters object for a MoveJ.
|
MoveLMoveNodeConfig |
createMoveLConfig()
Deprecated.
Creates a default MoveL shared values configuration.
|
MoveLMoveNodeConfig |
createMoveLConfig(MoveLMotionParameters moveLMotionParameters,
Feature feature)
Deprecated.
Creates a MoveL shared values configuration.
|
MoveLMotionParameters |
createMoveLMotionParameters(Speed toolSpeed,
ErrorHandler<Speed> toolSpeedErrorHandler,
Acceleration toolAcceleration,
ErrorHandler<Acceleration> toolAccelerationErrorHandler)
Deprecated.
Creates a shared motion parameters object for a MoveL.
|
MovePMoveNodeConfig |
createMovePConfig()
Deprecated.
Creates a default MoveP shared values configuration.
|
MovePMoveNodeConfig |
createMovePConfig(MovePMotionParameters movePMotionParameters,
Feature feature)
Deprecated.
Creates a MoveP shared values configuration.
|
MovePMotionParameters |
createMovePMotionParameters(Speed toolSpeed,
ErrorHandler<Speed> toolSpeedErrorHandler,
Acceleration toolAcceleration,
ErrorHandler<Acceleration> toolAccelerationErrorHandler,
Blend blend,
ErrorHandler<Blend> blendErrorHandler)
Deprecated.
Creates a shared motion parameters object for a MoveP.
|
MoveJMotionParameters createMoveJMotionParameters(AngularSpeed jointSpeed, ErrorHandler<AngularSpeed> jointSpeedErrorHandler, AngularAcceleration jointAcceleration, ErrorHandler<AngularAcceleration> jointAccelerationErrorHandler)
Creates a shared motion parameters object for a MoveJ.
When used with a move node the parameters apply to the movement of the robot arm, from the previous position through the waypoints under the move node.jointSpeed
- the shared joint speed to be achieved, not null
.jointSpeedErrorHandler
- error handler for handling validation. If using ErrorHandler.AUTO_CORRECT
this will clamp the value to the nearest valid joint speed value.jointAcceleration
- the shared joint acceleration to be used, not null
.jointAccelerationErrorHandler
- error handler for handling validation. If using ErrorHandler.AUTO_CORRECT
this will clamp the value to the nearest valid joint acceleration value.MoveLMotionParameters createMoveLMotionParameters(Speed toolSpeed, ErrorHandler<Speed> toolSpeedErrorHandler, Acceleration toolAcceleration, ErrorHandler<Acceleration> toolAccelerationErrorHandler)
Creates a shared motion parameters object for a MoveL.
When used with a move node the parameters apply to the movement of the robot arm, from the previous position through the waypoints under the move node.toolSpeed
- the shared tool speed to be achieved, not null
.toolSpeedErrorHandler
- error handler for handling validation. If using ErrorHandler.AUTO_CORRECT
this will clamp the value to the nearest valid tool speed value.toolAcceleration
- the shared tool acceleration to be used, not null
.toolAccelerationErrorHandler
- error handler for handling validation. If using ErrorHandler.AUTO_CORRECT
this will clamp the value to the nearest valid tool acceleration value.MovePMotionParameters createMovePMotionParameters(Speed toolSpeed, ErrorHandler<Speed> toolSpeedErrorHandler, Acceleration toolAcceleration, ErrorHandler<Acceleration> toolAccelerationErrorHandler, Blend blend, ErrorHandler<Blend> blendErrorHandler)
Creates a shared motion parameters object for a MoveP.
When used with a move node the parameters apply to the movement of the robot arm, from the previous position through the waypoints under the move node.toolSpeed
- the shared tool speed to be achieved, not null
.toolSpeedErrorHandler
- error handler for handling validation. If using ErrorHandler.AUTO_CORRECT
this will clamp the value to the nearest valid tool speed value.toolAcceleration
- the shared tool acceleration to be used, not null
.toolAccelerationErrorHandler
- error handler for handling validation. If using ErrorHandler.AUTO_CORRECT
this will clamp the value to the nearest valid tool acceleration value.blend
- the shared blend used with this motion, not null
.blendErrorHandler
- error handler for handling validation. If using ErrorHandler.AUTO_CORRECT
this will clamp the value to the nearest valid blend value.MoveJMoveNodeConfig createMoveJConfig()
Creates a default MoveJ shared values configuration.
Note that the default values of this configuration may change between PolyScope versions.MoveJMoveNodeConfig createMoveJConfig(MoveJMotionParameters moveJMotionParameters)
moveJMotionParameters
- the shared parameters for this movement, not null
.MoveLMoveNodeConfig createMoveLConfig()
Creates a default MoveL shared values configuration.
Note that the default values of this configuration may change between PolyScope versions.MoveLMoveNodeConfig createMoveLConfig(MoveLMotionParameters moveLMotionParameters, Feature feature)
moveLMotionParameters
- the shared parameters for this movement, not null
.feature
- the shared feature for this movement, not null
.MovePMoveNodeConfig createMovePConfig()
Creates a default MoveP shared values configuration.
Note that the default values of this configuration may change between PolyScope versions.MovePMoveNodeConfig createMovePConfig(MovePMotionParameters movePMotionParameters, Feature feature)
movePMotionParameters
- the shared parameters for this movement, not null
.feature
- the shared feature for this movement, not null
.Copyright © 2021. All rights reserved.