Skip to content

Commit

Permalink
Fix code comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
SamuelTallet committed Jan 11, 2020
1 parent 8240662 commit 533a21e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion source/universal_importer/load.rb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ module UniversalImporter
Sketchup.add_observer(AppObserver.new)
Sketchup.active_model.add_observer(ModelObserver.new)

# Plugs Universal Importer menus into SketchUp UI.
# Plugs Universal Importer menu into SketchUp UI.

Menu.new(
UI.menu('File') # parent_menu
Expand Down
14 changes: 7 additions & 7 deletions source/universal_importer/polyreducer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def prog_data_dir

end

# Reduces polygons of SketchUp selected entities.
# Reduces polygons of current SketchUp model.
def initialize

begin
Expand Down Expand Up @@ -144,7 +144,7 @@ def reset_prog_data_tmp_dir

end

# Converts SketchUp selected entities to DAE format.
# Converts current SketchUp model to DAE format.
#
# @return [true, false]
def convert_from_skp_to_dae
Expand All @@ -163,7 +163,7 @@ def convert_from_skp_to_dae

end

# Converts SketchUp selected entities to OBJ format.
# Converts current SketchUp model to OBJ format.
#
# @return [nil]
def convert_from_dae_to_obj
Expand Down Expand Up @@ -201,7 +201,7 @@ def apply_polygon_reduction

end

# Converts SketchUp selected entities to 3DS format.
# Converts current SketchUp model to 3DS format.
#
# @return [nil]
def convert_from_obj_to_3ds
Expand All @@ -216,7 +216,7 @@ def convert_from_obj_to_3ds

end

# Converts SketchUp selected entities to SKP format.
# Converts current SketchUp model to SKP format.
#
# @return [true, false]
def convert_from_3ds_to_skp
Expand All @@ -225,7 +225,7 @@ def convert_from_3ds_to_skp

end

# Converts SketchUp selected entities to DAE format.
# Converts current SketchUp model to DAE format.
#
# @return [nil]
def convert_from_obj_to_dae
Expand All @@ -240,7 +240,7 @@ def convert_from_obj_to_dae

end

# Converts SketchUp selected entities to SKP format.
# Converts current SketchUp model to SKP format.
#
# @return [true, false]
def convert_from_dae_to_skp
Expand Down

0 comments on commit 533a21e

Please sign in to comment.