[Plugin] Solids Penetration Check
-
Ups,I was sure that tested with components.Now it is ok and updated for download.
Now the code indentation is properly aligned so perhaps readableYou wrote :"Also, another strange thing(bug?) I see is when you have (group or component) inside a (group or component), I get a volume of "-1.0"
Sketchup assign the volume to -1 when the item is not a solid.If you mean something related to my plugin,please explain more.
You wrote:"That's why the error message saids undefined method."
How do you get this message?Hod do you debug? Im only using message boxes to debug.
-
Please help me find the solution for this bug:
-when one solid is a subcomponent and a subgroup in a component, the plugin can't find the penetration.
I know the problem is in line 132 def1=solid1.entities.parent ,but don't know what to do about it.
ThanksEDIT:SOLVED
-
@voljanko said:
Sketchup assign the volume to -1 when the item is not a solid.If you mean something related to my plugin,please explain more.
No, I just mention it just in case you didn't know about it. Components are hard for me to follow, so I just briefly looked through your code to learn more. At 1st, I was thinking this was causing your bug. But then figured out the error message.
@voljanko said:
You wrote:"That's why the error message saids undefined method."
How do you get this message?Hod do you debug? Im only using message boxes to debug.
Error messages are printed out in the Ruby Console. See picture of one way I debug, by running small snippets of code with Jim Foltz's "Web Console" plugin. Jim also has a "Ruby Toolbar" plugin, that lets you reload your plugin. But I think you need to add a check for if the plugin has been installed previously, or you will get multiple menu items.
require 'sketchup.rb' if( not file_loaded?('solids_penetration_check.rb') ) plugins_menu = UI.menu("Tools") plugins_menu.add_item("Solids Penetration Check") { penetrationcheck } end file_loaded 'solids_penetration_check.rb'
-
Thank you thomthom for your suggestions.
I have test the plugin on a model with 31 solids organised in many subgroups and it takes 40 seconds to
find 10 "penetrations".So it is slow and need some speed-up like you suggest. -
Any way to get this to Intersect With Model to make bright orange(selectable color) lines to check all the other geometry that is NOT solids?
Richard
-
Yes,there is a way,why are you asking
Anyway,if you want to find the mistakes,that makes your group a non-solid,there is another plugin - Solid Inspector from thomthom. -
is the plugin able to check intersections between solids when they are part of components?
i checked, and it doesn't seem sothe connections are solids, intersection is detected when they are outside the component, and not when theyare inside
is there a way to solve the problem?
-
@voljanko said:
Yes,there is a way,why are you asking
Anyway,if you want to find the mistakes,that makes your group a non-solid,there is another plugin - Solid Inspector from thomthom.I don't draw with solids. Need a tool to check all the other things I draw to look for possible overlap conflicts between components, groups etc. 'Tile components' "intersecting" 'cabinet components' for instance...
Richard
-
@voljanko said:
Please help me find the solution for this bug:
-when one solid is a subcomponent and a subgroup in a component, the plugin can't find the penetration.
I know the problem is in line 132 def1=solid1.entities.parent ,but don't know what to do about it.
ThanksEDIT:SOLVED
i cannot help you concerning the ruby programming, but i tried your plugin on the model included in your post, and it worked perfectly; event when i made a component from the component and the group
i tried it also on the file included; components with solids inside, it worked, but in a strange way; i would like to know which are the components that interfere, but the information vanishes when the program stops...
where are the components that intersect?
-
Aaaar it does not work with free versions... Can you do something?
@unknownuser said:
Error: #<ArgumentError: 'intersect' is a Pro only feature.>
C:/Program Files/Google/Google SketchUp 8/Plugins/solids_penetration_check.rb:141:inintersect' C:/Program Files/Google/Google SketchUp 8/Plugins/solids_penetration_check.rb:141:in
check_penetrations'
C:/Program Files/Google/Google SketchUp 8/Plugins/solids_penetration_check.rb:32:inactivate' C:/Program Files/Google/Google SketchUp 8/Plugins/solids_penetration_check.rb:159:in
select_tool'
C:/Program Files/Google/Google SketchUp 8/Plugins/solids_penetration_check.rb:159:in `penetrationcheck'
C:/Program Files/Google/Google SketchUp 8/Plugins/solids_penetration_check.rb:13
Advertisement