Sha256: f3557089697cf6fbda3ae6e4a1efd7f4db77a985c69f535cc6a1a2012c968bf6

Contents?: true

Size: 932 Bytes

Versions: 17

Compression:

Stored size: 932 Bytes

Contents

module Teacup
  class Stylesheet

    def identity
      [1,0,0,0, 0,1,0,0, 0,0,1,0, 0,0,0,1]
    end

    def pi
      3.1415926
    end

    # rotates the "up & down" direction.  The bottom of the view will rotate
    # towards the user as angle increases.
    def flip matrix, angle
      CATransform3DRotate(matrix, angle, 1, 0, 0)
    end

    # rotates the "left & right" direction.  The right side of the view will
    # rotate towards the user as angle increases.
    def twist matrix, angle
      CATransform3DRotate(matrix, angle, 0, 1, 0)
    end

    # spins, along the z axis.  This is probably the one you want, for
    # "spinning" a view like you might a drink coaster or paper napkin.
    def spin matrix, angle
      CATransform3DRotate(matrix, angle, 0, 0, 1)
    end

    # rotates the layer arbitrarily
    def rotate matrix, angle, x, y, z
      CATransform3DRotate(matrix, angle, x, y, z)
    end

  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
teacup-1.3.4 lib/teacup/stylesheet_extensions/rotation.rb
teacup-1.3.3 lib/teacup/stylesheet_extensions/rotation.rb
teacup-1.3.2 lib/teacup/stylesheet_extensions/rotation.rb
teacup-1.3.1 lib/teacup/stylesheet_extensions/rotation.rb
teacup-1.3.0 lib/teacup/stylesheet_extensions/rotation.rb
teacup-1.2.9 lib/teacup/stylesheet_extensions/rotation.rb
teacup-1.2.8 lib/teacup/stylesheet_extensions/rotation.rb
teacup-1.2.7 lib/teacup/stylesheet_extensions/rotation.rb
teacup-1.2.5 lib/teacup/stylesheet_extensions/rotation.rb
teacup-1.2.4 lib/teacup/stylesheet_extensions/rotation.rb
teacup-1.2.3 lib/teacup/stylesheet_extensions/rotation.rb
teacup-1.2.2 lib/teacup/stylesheet_extensions/rotation.rb
teacup-1.0.4 lib/teacup/stylesheet_extensions/rotation.rb
teacup-1.0.3 lib/teacup/stylesheet_extensions/rotation.rb
teacup-1.0.2 lib/teacup/stylesheet_extensions/rotation.rb
teacup-1.0.1 lib/teacup/stylesheet_extensions/rotation.rb
teacup-1.0.0 lib/teacup/stylesheet_extensions/rotation.rb