danini-the-panini/mittsu-opengl

View on GitHub
lib/mittsu/opengl_implementation/objects/group.rb

Summary

Maintainability
A
0 mins
Test Coverage
F
50%
module Mittsu
  class Group
    def project(renderer)
      @renderer = renderer
      return unless visible
      project_children
    end
  end
end