struct Glove::GLM::TMat4(T)

Included Modules

Defined in:

glm/glm.cr

Constructors

Class Method Summary

Instance Method Summary

Constructor Detail

def self.new #

[View source]
def self.new(&block : Int32 -> T) #

[View source]

Class Method Detail

def self.identity #

[View source]
def self.one #

[View source]
def self.zero #

[View source]

Instance Method Detail

def *(other : self) #

[View source]
def ==(other) #
Description copied from struct Struct

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

[View source]
def [](row, col) #

[View source]
def []=(row, col, value : T) #

[View source]
def []=(i, value : T) #

[View source]
def clone #

[View source]
def identity! #

[View source]
def inspect(io) #

[View source]
def rotate_z(angle : Float32) #

[View source]
def rotate_z!(angle : Float32) #

[View source]
def scale(x : Float32, y : Float32) #

[View source]
def scale!(x : Float32, y : Float32) #

[View source]
def size #
Description copied from module Indexable(T)

Returns the number of elements in this container.


[View source]
def to_unsafe #

[View source]
def transform(x : Float32, y : Float32) #

[View source]
def translate(dx : Float32, dy : Float32) #

[View source]
def translate!(dx : Float32, dy : Float32) #

[View source]
def unsafe_fetch(i) #

[View source]
def update!(&block : Int32 -> T) #

[View source]