Method: RMath3D::RMtx4#to_s

Defined in:
lib/rmath3d/rmath3d_plain.rb

#to_sObject

call-seq: to_s

Returns human-readable string.



1304
1305
1306
1307
1308
1309
# File 'lib/rmath3d/rmath3d_plain.rb', line 1304

def to_s
  "( #{@e[0]}, #{@e[4]}, #{@e[8]}, #{@e[12]} )\n"  +
  "( #{@e[1]}, #{@e[5]}, #{@e[9]}, #{@e[13]} )\n"  +
  "( #{@e[2]}, #{@e[6]}, #{@e[10]}, #{@e[14]} )\n" +
  "( #{@e[3]}, #{@e[7]}, #{@e[11]}, #{@e[15]} )\n"
end