Class: TD::Types::VectorPathCommand::CubicBezierCurve
- Inherits:
-
TD::Types::VectorPathCommand
- Object
- Dry::Struct
- Base
- TD::Types::VectorPathCommand
- TD::Types::VectorPathCommand::CubicBezierCurve
- Defined in:
- lib/tdlib/types/vector_path_command/cubic_bezier_curve.rb
Overview
A cubic Bézier curve to a given point.
Instance Attribute Summary collapse
-
#end_control_point ⇒ TD::Types::Point
The end control point of the curve.
-
#end_point ⇒ TD::Types::Point
The end point of the curve.
-
#start_control_point ⇒ TD::Types::Point
The start control point of the curve.
Method Summary
Methods inherited from Base
Instance Attribute Details
#end_control_point ⇒ TD::Types::Point
The end control point of the curve.
7 8 9 |
# File 'lib/tdlib/types/vector_path_command/cubic_bezier_curve.rb', line 7 def end_control_point @end_control_point end |
#end_point ⇒ TD::Types::Point
The end point of the curve.
7 8 9 |
# File 'lib/tdlib/types/vector_path_command/cubic_bezier_curve.rb', line 7 def end_point @end_point end |
#start_control_point ⇒ TD::Types::Point
The start control point of the curve.
7 8 9 |
# File 'lib/tdlib/types/vector_path_command/cubic_bezier_curve.rb', line 7 def start_control_point @start_control_point end |