-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
15 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,9 +13,9 @@ def LH.[](key) | |
end | ||
|
||
zome_extension = SketchupExtension.new('Zome', 'Zome/main.rb') | ||
zome_extension.version = '1.3.0' | ||
zome_extension.version = '1.3.1' | ||
zome_extension.copyright = '2018' | ||
zome_extension.description = LH['Zome Creator - PolarZonahedron'] | ||
zome_extension.description = LH['Zome Creator - PolarZonohedron'] | ||
zome_extension.creator = 'Jo Takion <[email protected]>' | ||
Sketchup.register_extension(zome_extension, true) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#https://github.com/takion/zome-polar-rhombizonahedron [email protected] | ||
#https://github.com/takion/zome-polar-rhombizonohedron [email protected] | ||
|
||
require 'sketchup.rb' | ||
module Takion | ||
|
@@ -28,7 +28,7 @@ def initialize | |
def start | ||
@mo = Sketchup.active_model | ||
Sketchup::set_status_text(LH["Zome modelisation in progress..."]) | ||
@mo.start_operation LH["PolarZonahedron - Structure Processing"] | ||
@mo.start_operation LH["PolarZonohedron - Structure Processing"] | ||
@t1 = Time.now | ||
@entities = @mo.active_entities.add_group.entities | ||
end | ||
|
@@ -151,7 +151,7 @@ def rapport_complet params | |
#msg += " "+LH["Segments total length"]+": #{segments_lenth} \n" | ||
msg += " "+LH["Number of Ties"]+": #{@tirants_nb} \n" | ||
|
||
msg += "\n© "+LH["Zome Creator - OpenSource software developed by Jo"]+" - [email protected] \nhttps://github.com/takion/zome-polar-rhombizonahedron/" | ||
msg += "\n© "+LH["Zome Creator - OpenSource software developed by Jo"]+" - [email protected] \nhttps://github.com/takion/zome-polar-rhombizonohedron/" | ||
|
||
return msg | ||
end | ||
|
@@ -184,7 +184,7 @@ def zome_al | |
end | ||
} | ||
begin | ||
results = UI.inputbox prompts,defaults,drops,LH['Polar Zonahedron based on shape angle and edges'] | ||
results = UI.inputbox prompts,defaults,drops,LH['Polar Zonohedron based on shape angle and edges'] | ||
return unless results | ||
0.upto(config.length-1){ |i| | ||
@gen_zome[config[i][0]] = results[i] | ||
|
@@ -254,7 +254,7 @@ def zome_ah | |
end | ||
} | ||
begin | ||
results = UI.inputbox prompts,defaults,drops,LH['PolarZonahedron by shapes angle and height'] | ||
results = UI.inputbox prompts,defaults,drops,LH['PolarZonohedron by shapes angle and height'] | ||
return unless results | ||
0.upto(config.length-1){ |i| | ||
@gen_zome[config[i][0]] = results[i] | ||
|
@@ -330,7 +330,7 @@ def zome_ad | |
end | ||
} | ||
begin | ||
results = UI.inputbox prompts,defaults,drops,LH['PolarZonahedron by shapes angle and diameter'] | ||
results = UI.inputbox prompts,defaults,drops,LH['PolarZonohedron by shapes angle and diameter'] | ||
return unless results | ||
0.upto(config.length-1){ |i| | ||
@gen_zome[config[i][0]] = results[i] | ||
|
@@ -402,7 +402,7 @@ def zome_dh | |
end | ||
} | ||
begin | ||
results = UI.inputbox prompts,defaults,drops,LH['Polar Zonahedron based on diameter and height'] | ||
results = UI.inputbox prompts,defaults,drops,LH['Polar Zonohedron based on diameter and height'] | ||
return unless results | ||
0.upto(config.length-1){ |i| | ||
@gen_zome[config[i][0]] = results[i] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters