[Source]
# File sources/parser/graphics/path.rb, line 148 148: def initialize(x,y); super('m', x, y) end
# File sources/parser/graphics/path.rb, line 150 150: def update_state(gs) 151: gs.current_path << (subpath = Path.new) 152: 153: subpath.current_point = @operands 154: self 155: end
[Validate]