Interface Pose.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Pose.Builder,Pose>,SdkBuilder<Pose.Builder,Pose>,SdkPojo
- Enclosing class:
- Pose
public static interface Pose.Builder extends SdkPojo, CopyableBuilder<Pose.Builder,Pose>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Pose.Builderpitch(Float pitch)Value representing the face rotation on the pitch axis.Pose.Builderroll(Float roll)Value representing the face rotation on the roll axis.Pose.Builderyaw(Float yaw)Value representing the face rotation on the yaw axis.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
roll
Pose.Builder roll(Float roll)
Value representing the face rotation on the roll axis.
- Parameters:
roll- Value representing the face rotation on the roll axis.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
yaw
Pose.Builder yaw(Float yaw)
Value representing the face rotation on the yaw axis.
- Parameters:
yaw- Value representing the face rotation on the yaw axis.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pitch
Pose.Builder pitch(Float pitch)
Value representing the face rotation on the pitch axis.
- Parameters:
pitch- Value representing the face rotation on the pitch axis.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-