Sha256: 168cc0f1dfba76bf72991ee881d58ee8aff4f3e4e539b515ad4579af5d34c1c5
Contents?: true
Size: 1.81 KB
Versions: 3
Compression:
Stored size: 1.81 KB
Contents
# Copyright, 2012, by Samuel G. D. Williams. <http://www.codeotaku.com> # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. require 'pathname' require 'test/unit' require 'stringio' require 'collada/transforms' class TestTransforms < Test::Unit::TestCase def test_scale m = Collada::Transforms.scale(2, 4, 6) v = Vector[1, 1, 1, 0] assert_equal Vector[2, 4, 6, 0], (m * v) end def test_translate m = Collada::Transforms.translate(2, 4, 6) v = Vector[1, 1, 1, 1] assert_equal Vector[3, 5, 7, 1], (m * v) end def test_rotate m = Collada::Transforms.rotate(1, 0, 0, 90) v = Vector[0, 0, 1, 0] assert_equal Vector[0, -1.0, 0, 0], (m * v).collect{|i| i.round(2)} end def test_quaternions m = Collada::Transforms.rotate(1, 0, 0, 90) puts m puts Collada::Transforms.rotation_matrix_to_quaternion(m) end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
collada-0.2.2 | test/test_transforms.rb |
collada-0.2.1 | test/test_transforms.rb |
collada-0.2.0 | test/test_transforms.rb |