[Plugin] Solids Penetration Check
-
Here it is,my first public plugin
In some cases the intersections between solids can be considered as mistakes.
So this plugin is made to find this mistakes.
Just select some solids and click the Solids Penetration Check from the Tools menu.
The intersections between solids will be highlighted (selected) and colored red.
The version 8 of Sketchup is needed because of SOLIDS.Now the plugin is a tool and much more useful ,because you can zoom the penetration area.
When you activate the tool,the x-ray option is selected automatically.
Please note that if you check more solids,the time to check will increase significantly.It is because of many boolean
operations between the solids.If you want to see that plugin is doing something (not freezed),you can select the Outliner (Window menu) as the activity display.It can be some kind of progress bar.What do you think about it?
EDIT:
This project is stoped, the penetration check function is debugged and a part of http://www.susolid.com plugin.
-
Hello
What is suposed to do?
Post an image will be a great help! (or a video)As a selection is "blue" enlightting, in what color is the Interception?
you must click on each face message dialog before can exit from the plug!
That is some painfulI have nothing special visual!
(I am in V6)
(that is the same with 2 cubes grouped nammed!
-
So information must be done in the first post
But give an image! -
Hello,
this plugin is only useful for checking SOLID groups and components,if they are penetrating itch other.
I have remove the message boxes (and updated the file for download) that show you the "ungrupped" entities.So no more painful clicking.
And also it is only for versions 8 and more,because the SOLIDS exists only from version 8 (i think). -
Congratulations on your first plugin.
I got a couple of tips:
- Wrap your code into a module with a unique name that relates to you. This way to isolate your code from the other plugins running.
Example
module VJO_Intersection_Inspector def self.check_intersections # ... end end
( VJO was just a shortening of voljanko that I made just for this purpose of creating an initial for the module name.)
- Entity.typename isextremely slow! There's rare any need it use this method and it should be avoided.
Instead, useEntity.is_?
orEntity.kind_of?
to check for types.
Examples:
` if entity.is_a?( Sketchup::Face )if entity.is_a?( Sketchup::Group)
if entity.is_a?( Sketchup::ComponentInstance )`
It is many time faster. Check this thread for more info and other performance tips: http://forums.sketchucation.com/viewtopic.php?f=180&t=25305
There is another sticky thread that is worth checking out: http://forums.sketchucation.com/viewtopic.php?f=180&t=10142
-
I would also like to change the colour of the result to make it more visible,but I don't know how.
Any suggestions? -
@voljanko said:
I would also like to change the colour of the result to make it more visible,but I don't know how.
Any suggestions?Create a material and apply it to the entities.
http://code.google.com/apis/sketchup/docs/ourdoc/material.html` my_material = model.materials.add( 'IntersectionMaterial' )
my_material.color = 'orange'face.material = my_material
group.material = my_material` -
Trying to read your code - but I struggle to follow the code flow. Seems that your indentation isn't properly aligned throughout your code...
-
Updated version:
-now is a tool (you can zoom to check the penetration area)
-automatic x_ray view
-red colored penetration area
-new name -
Now seems very cool
-
@thomthom said:
@voljanko said:
I would also like to change the colour of the result to make it more visible,but I don't know how.
Any suggestions?Create a material and apply it to the entities.
http://code.google.com/apis/sketchup/docs/ourdoc/material.html` my_material = model.materials.add( 'IntersectionMaterial' )
my_material.color = 'orange'face.material = my_material
group.material = my_material`voljanko, I see this is how you did it in your plugin. But the way you have it set up, you add a new identical material every single time your plugin is run. You can open up "Window > Model Info > Statistics" to check the number of materials.
You don't need to define a new material. Instead use the following, which will only ever add one pre-defined material to your drawing, no matter how many times you use it:
group.material = 'red' -
Ok,thanks.
Updated.
Please note,if you have a big model (more than 20 solids),the plugin will need more time to compute all the intersections.
If you want to see that plugin is doing something (not freezed),you can select the Outliner (Window menu) as the activity display.It can be some kind of progress bar. -
@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.
ThanksYou probably have more experience playing with components, than me. But what I can see is, there is no need to blame sub(groups or components), yet. Your plugin doesn't even work for two simple intersecting components. "def1=solid1.entities.parent" finds the definition of groups, not components. Component instances don't have the method for "entities". It's the component definition that has that method. That's why the error message saids undefine method. It should be something like "def1 = componentInstance.definition" for components.
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"
-
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?
Advertisement