Class: AsposeSlidesCloud::ArcToPathSegment

Inherits:
PathSegment show all
Defined in:
lib/aspose_slides_cloud/models/arc_to_path_segment.rb

Overview

Arc segment of the geometry path

Instance Attribute Summary collapse

Attributes inherited from PathSegment

#type

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseObject

#_deserialize, #_to_hash, #build_from_hash, #to_body, #to_hash, #to_s

Constructor Details

#initialize(attributes = {}) ⇒ ArcToPathSegment

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash



62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# File 'lib/aspose_slides_cloud/models/arc_to_path_segment.rb', line 62

def initialize(attributes = {})
  super

  if attributes.has_key?(:'Width')
    self.width = attributes[:'Width']
  end

  if attributes.has_key?(:'Height')
    self.height = attributes[:'Height']
  end

  if attributes.has_key?(:'StartAngle')
    self.start_angle = attributes[:'StartAngle']
  end

  if attributes.has_key?(:'SweepAngle')
    self.sweep_angle = attributes[:'SweepAngle']
  end
  self.type = 'ArcTo'
end

Instance Attribute Details

#heightObject

Height of the rectangle



32
33
34
# File 'lib/aspose_slides_cloud/models/arc_to_path_segment.rb', line 32

def height
  @height
end

#start_angleObject

Start angle



35
36
37
# File 'lib/aspose_slides_cloud/models/arc_to_path_segment.rb', line 35

def start_angle
  @start_angle
end

#sweep_angleObject

Sweep angle



38
39
40
# File 'lib/aspose_slides_cloud/models/arc_to_path_segment.rb', line 38

def sweep_angle
  @sweep_angle
end

#widthObject

Width of the rectangle



29
30
31
# File 'lib/aspose_slides_cloud/models/arc_to_path_segment.rb', line 29

def width
  @width
end

Class Method Details

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



41
42
43
44
45
46
47
48
# File 'lib/aspose_slides_cloud/models/arc_to_path_segment.rb', line 41

def self.attribute_map
  super.merge({
    :'width' => :'Width',
    :'height' => :'Height',
    :'start_angle' => :'StartAngle',
    :'sweep_angle' => :'SweepAngle',
  })
end

.swagger_typesObject

Attribute type mapping.



51
52
53
54
55
56
57
58
# File 'lib/aspose_slides_cloud/models/arc_to_path_segment.rb', line 51

def self.swagger_types
  super.merge({
    :'width' => :'Float',
    :'height' => :'Float',
    :'start_angle' => :'Float',
    :'sweep_angle' => :'Float',
  })
end

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



119
120
121
122
123
124
125
126
127
# File 'lib/aspose_slides_cloud/models/arc_to_path_segment.rb', line 119

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      type == o.type &&
      width == o.width &&
      height == o.height &&
      start_angle == o.start_angle &&
      sweep_angle == o.sweep_angle
end

#eql?(o) ⇒ Boolean

Parameters:

  • Object (Object)

    to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


131
132
133
# File 'lib/aspose_slides_cloud/models/arc_to_path_segment.rb', line 131

def eql?(o)
  self == o
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



137
138
139
# File 'lib/aspose_slides_cloud/models/arc_to_path_segment.rb', line 137

def hash
  [type, width, height, start_angle, sweep_angle].hash
end

#list_invalid_propertiesObject

Show invalid properties with the reasons. Usually used together with valid?

Returns:

  • Array for valid properties with the reasons



85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# File 'lib/aspose_slides_cloud/models/arc_to_path_segment.rb', line 85

def list_invalid_properties
  invalid_properties = super
  if @width.nil?
    invalid_properties.push('invalid value for "width", width cannot be nil.')
  end

  if @height.nil?
    invalid_properties.push('invalid value for "height", height cannot be nil.')
  end

  if @start_angle.nil?
    invalid_properties.push('invalid value for "start_angle", start_angle cannot be nil.')
  end

  if @sweep_angle.nil?
    invalid_properties.push('invalid value for "sweep_angle", sweep_angle cannot be nil.')
  end

  invalid_properties
end

#valid?Boolean

Check to see if the all the properties in the model are valid

Returns:

  • (Boolean)

    true if the model is valid



108
109
110
111
112
113
114
115
# File 'lib/aspose_slides_cloud/models/arc_to_path_segment.rb', line 108

def valid?
  return false if !super
  return false if @width.nil?
  return false if @height.nil?
  return false if @start_angle.nil?
  return false if @sweep_angle.nil?
  true
end