class Compositor::Renderer::Base
Attributes
collection[R]
composite[R]
Public Class Methods
new(composite, collection)
click to toggle source
# File lib/compositor/renderer/base.rb, line 6 def initialize(composite, collection) @composite = composite @collection = collection end
Public Instance Methods
render()
click to toggle source
# File lib/compositor/renderer/base.rb, line 11 def render raise NoMethodError.new "Define render() method in subclasses!" end