Class: TD::Types::VectorPathCommand::CubicBezierCurve

Inherits:
TD::Types::VectorPathCommand show all
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

Method Summary

Methods inherited from Base

#to_hash, #to_json

Instance Attribute Details

#end_control_pointTD::Types::Point

The end control point of the curve.

Returns:



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_pointTD::Types::Point

The end point of the curve.

Returns:



7
8
9
# File 'lib/tdlib/types/vector_path_command/cubic_bezier_curve.rb', line 7

def end_point
  @end_point
end

#start_control_pointTD::Types::Point

The start control point of the curve.

Returns:



7
8
9
# File 'lib/tdlib/types/vector_path_command/cubic_bezier_curve.rb', line 7

def start_control_point
  @start_control_point
end