Class: Yass::Declarations::Transform

Inherits:
Object
  • Object
show all
Includes:
Node
Defined in:
lib/yass/declarations.rb

Defined Under Namespace

Classes: AccumulateMatrix, InterpolateMatrix, Matrix, Matrix3D, Perspective, Rotate, Rotate3D, RotateX, RotateY, RotateZ, Scale, Scale3D, ScaleX, ScaleY, ScaleZ, Skew, SkewX, SkewY, Translate, Translate3D, TranslateX, TranslateY, TranslateZ

Constant Summary collapse

RUBY_METHODS =
%i(kind operations).freeze

Instance Method Summary collapse

Methods included from Node

#to_h

Instance Method Details

#accept(visitor) ⇒ Object



7098
7099
7100
# File 'lib/yass/declarations.rb', line 7098

def accept(visitor)
  visitor.visit_declaration_transform(self)
end

#kindObject



7102
7103
7104
# File 'lib/yass/declarations.rb', line 7102

def kind
  :transform
end