struct

Glove::GLM::TMat4(T)

Inherits Indexable / Enumerable / Iterable / Struct / Value / Object

Constructors

Class methods

identity
Source
zero
Source

Instance methods

*(other : self)
Source
==(other)

Returns true if this struct is equal to other.

Both structs' instance vars are compared to each other. Thus, two structs are considered equal if each of their instance variables are equal. Subclasses should override this method to provide specific equality semantics.

struct Point
  def initialize(@x : Int32, @y : Int32)
  end
end

p1 = Point.new 1, 2
p2 = Point.new 1, 2
p3 = Point.new 3, 4

p1 == p2 # => true
p1 == p3 # => false
Source
[](row, col)
Source
[]=(row, col, value : T)
Source
[]=(i, value : T)
Source
clone
Source
identity!
Source
inspect(io)
Source
rotate_z(angle : Float32)
Source
rotate_z!(angle : Float32)
Source
scale(x : Float32, y : Float32)
Source
scale!(x : Float32, y : Float32)
Source
size

Returns the number of elements in this container.

Source
to_unsafe
Source
transform(x : Float32, y : Float32)
Source
translate(dx : Float32, dy : Float32)
Source
translate!(dx : Float32, dy : Float32)
Source
unsafe_fetch(i)
Source
update!
Source