Sha256: 3d80f2ebdd72eaa224fc490f38449043594996a34c62302677cdcc24162fe043
Contents?: true
Size: 682 Bytes
Versions: 6
Compression:
Stored size: 682 Bytes
Contents
require 'test/unit' require 'fox12' include Fox class TC_FXGLShape < Test::Unit::TestCase DELTA = 1.0e-5 def setup @shape = FXGLShape.new(0.0, 0.0, 0.0, 0) end def test_getPosition assert_kind_of(FXVec3f, @shape.position) end def test_setPosition @shape.position = FXVec3f.new(0.1, 0.2, 0.3) assert_in_delta(0.1, @shape.position[0], DELTA) assert_in_delta(0.2, @shape.position[1], DELTA) assert_in_delta(0.3, @shape.position[2], DELTA) @shape.position = [0.4, 0.5, 0.6] assert_in_delta(0.4, @shape.position[0], DELTA) assert_in_delta(0.5, @shape.position[1], DELTA) assert_in_delta(0.6, @shape.position[2], DELTA) end end
Version data entries
6 entries across 6 versions & 1 rubygems