Method: Vtk::Command#execute

Defined in:
lib/vtk/command.rb

#executeObject

Execute this command

Raises:

  • (NotImplementedError)


21
22
23
24
25
26
# File 'lib/vtk/command.rb', line 21

def execute(*)
  raise(
    NotImplementedError,
    "#{self.class}##{__method__} must be implemented"
  )
end