Skip to content

Commit

Permalink
Merge pull request #149 from jimfoltz/standardize-headers
Browse files Browse the repository at this point in the history
standardize file headers
  • Loading branch information
thomthom committed Jan 7, 2015
2 parents 4ad199a + a711d9c commit a855242
Show file tree
Hide file tree
Showing 7 changed files with 52 additions and 16 deletions.
8 changes: 5 additions & 3 deletions src/sketchup-stl.rb
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
# Copyright 2012-2014 Trimble Navigation Ltd.
# Copyright 2012-2015 Trimble Navigation Ltd.
#
# License: The MIT License (MIT)
#
# A SketchUp Ruby Extension that adds STL (STereoLithography) file format
# import and export. More info at https://github.com/SketchUp/sketchup-stl
#
# Sketchup-stl Extension

require 'sketchup.rb'
require 'extensions.rb'
require 'sketchup'
require 'extensions'

module CommunityExtensions
module STL
Expand Down
13 changes: 8 additions & 5 deletions src/sketchup-stl/exporter.rb
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
# SketchUp to DXF STL Converter
# Last edited: February 18, 2011
# Authors: Nathan Bromham, Konrad Shroeder (http://www.guitar-list.com/)
# Copyright 2012-2015 Trimble Navigation Ltd.
#
# License: Apache License, Version 2.0
# License: The MIT License (MIT)
#
# A SketchUp Ruby Extension that adds STL (STereoLithography) file format
# import and export. More info at https://github.com/SketchUp/sketchup-stl
#
# Exporter

require 'sketchup.rb'
require 'sketchup'

module CommunityExtensions
module STL
Expand Down
9 changes: 6 additions & 3 deletions src/sketchup-stl/importer.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
# jf_stl_importer.rb - Imports ascii and binary .stl file in SketchUp
# Copyright 2012-2015 Trimble Navigation Ltd.
#
# Copyright (C) 2010 Jim Foltz ([email protected])
# License: The MIT License (MIT)
#
# License: Apache License, Version 2.0
# A SketchUp Ruby Extension that adds STL (STereoLithography) file format
# import and export. More info at https://github.com/SketchUp/sketchup-stl
#
# Importer

require 'sketchup'

Expand Down
11 changes: 8 additions & 3 deletions src/sketchup-stl/loader.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
# Copyright 2012 Trimble Navigation Ltd.
# Copyright 2012-2015 Trimble Navigation Ltd.
#
# License: Apache License, Version 2.0
# License: The MIT License (MIT)
#
# A SketchUp Ruby Extension that adds STL (STereoLithography) file format
# import and export. More info at https://github.com/SketchUp/sketchup-stl
#
# Loader

require 'sketchup.rb'
require 'sketchup'

module CommunityExtensions
module STL
Expand Down
9 changes: 7 additions & 2 deletions src/sketchup-stl/translator.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Translator - the class formerly known as LanguageHandler2
# Copyright 2012-2015 Trimble Navigation Ltd.
#
# License: The MIT License (MIT)
#
# License: Apache License, Version 2.0
# A SketchUp Ruby Extension that adds STL (STereoLithography) file format
# import and export. More info at https://github.com/SketchUp/sketchup-stl
#
# Translator - the class formerly known as LanguageHandler2

require 'sketchup'

Expand Down
9 changes: 9 additions & 0 deletions src/sketchup-stl/utils.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# Copyright 2012-2015 Trimble Navigation Ltd.
#
# License: The MIT License (MIT)
#
# A SketchUp Ruby Extension that adds STL (STereoLithography) file format
# import and export. More info at https://github.com/SketchUp/sketchup-stl
#
# Utilities

module CommunityExtensions
module STL
module Utils
Expand Down
9 changes: 9 additions & 0 deletions src/sketchup-stl/webdialog_extensions.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# Copyright 2012-2015 Trimble Navigation Ltd.
#
# License: The MIT License (MIT)
#
# A SketchUp Ruby Extension that adds STL (STereoLithography) file format
# import and export. More info at https://github.com/SketchUp/sketchup-stl
#
# WebDialog Extensions

require 'sketchup'

module CommunityExtensions
Expand Down

0 comments on commit a855242

Please sign in to comment.