/svgTemplateMakerReg.rb

http://sketchup-svg-outline-plugin.googlecode.com/ · Ruby · 30 lines · 7 code · 3 blank · 20 comment · 0 complexity · b88a68ba80a974e6c9900b362d0f772a MD5 · raw file

  1. require 'sketchup.rb'
  2. require 'extensions.rb'
  3. require 'LangHandler.rb'
  4. ###########################################################
  5. #
  6. # Scalable Vector Graphics (SVG) from Google Sketchup Faces
  7. # Copyright (C) 2008 Simon Beard
  8. #
  9. # This program is free software: you can redistribute it and/or modify
  10. # it under the terms of the GNU General Public License as published by
  11. # the Free Software Foundation, either version 3 of the License, or
  12. # (at your option) any later version.
  13. #
  14. # This program is distributed in the hope that it will be useful,
  15. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. # GNU General Public License for more details.
  18. #
  19. # You should have received a copy of the GNU General Public License
  20. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  21. #
  22. ###########################################################
  23. $uStrings = LanguageHandler.new("FlightsOfIdeas")
  24. flightsOfIdeasExtension = SketchupExtension.new $uStrings.GetString("FlightsOfIdeas"), "FlightsOfIdeas/templateMaker.rb"
  25. flightsOfIdeasExtension.description=$uStrings.GetString("These tools allow the creation of SVG files using objects faces.")
  26. Sketchup.register_extension flightsOfIdeasExtension, true
  27. ###########################################################