Sha256: ebc38de7c426315dd8fe1bf24a4150ba6c9eaf7806d228dddd109d76ded1add3

Contents?: true

Size: 257 Bytes

Versions: 1

Compression:

Stored size: 257 Bytes

Contents

module TD::Types
  # A point on a Cartesian plane.
  #
  # @attr x [Float] The point's first coordinate.
  # @attr y [Float] The point's second coordinate.
  class Point < Base
    attribute :x, TD::Types::Float
    attribute :y, TD::Types::Float
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tdlib-schema-1.7.0.1 lib/tdlib/types/point.rb