[Plugin] ShadowProjector
-
Here's v1.2 http://forums.sketchucation.com/viewtopic.php?p=371243#p371243
Its speed and error trapping are improved.
It now limits its purview to potential shadow-casting objects and is therefore quicker... -
@unknownuser said:
Because faces using a translucent material don't show normal shadows you can now use this tool to add a visible translucent 'gray' shadow-group face [with no edges] onto selected window-glass etc,
As it is, it's already a great tool dear TIG
Thank you so much to make SketchUp each day growing as a wonderful application
++simon
-
I can't use the plugin It crashes my model all the time. I made a magnifier glass and a ground plane (face) . I selected the face, that was oriented with front upwards (the shadow projected on front face), then ran the plugin. ... First time it made a grouped face over my selected one. Now it just crashes every time.
Model attached.
-
It Bugsplats for me too.
It's a relatively small object and makes many tiny facets in the shadow that it needs to process.
Some complex shapes just have too much geometry.
I erased the unneeded coplanar edges which up the face count considerably!
Also made sure the forms were solids - tiny holes leak shadows - erased unwanted internal partitions and flaps...
The small detailing on the handle also makes some tiny facets when projected.
Lifting the handle up 1mm so it didn't touch the face [a single point of contact or tiny common facet seems to be awkward].
Making it 1000 bigger using Scale, simplifying the handle and putting the lens on an 'off' layer [you don't want it's shadow anyway ?] - I did get it to work eventually... BUT it took ages !If I copy/paste your geometry into a new SKP I get an error fix now ? message about zero length edges - BUT it doesn't 'fix' within the SKP itself - weird...
This simplified version processes readily without problems.
-
Using this technic and some more creating anamorph art would be great!!!! url:
http://jrengozzi.wordpress.com/page/2/Regards and thanks!
Harry -
If someone is interested there is a similar shadow projector in skelion plugin.
You can project shadows at specific time, but over a range of time too, that's the main difference of the plugin.
I tried with the magnifier.skp test and it works.(Time calculation about a minut) -
to TIG
I try to find the way to reduce the time of ShadowProjector plugin culation process after I found it take a long time when the number of calculated face up to 50 faces.
Now, I study in master degree and try to create plugin to retrieve shadow area from all day solar vector on glass face of building. When I try to put ShadowProjector algorithm to 10 loops solar vector, the time usage graph of 10 loops are not linear. It is parabola although the time usage graph in loop which use the .raytest function is linear.
Please suggestion.
-
Morph
The time it takes Sketchup to add objects to a context is not linear.
The more objects the slower it is, but as you have noticed it is almost 'exponential' so x2 objects takes x4 the time etc.
With relatively few objects this is not so noticeable - but the more objects the worse it gets.
Also the number of objects already in the context slows things up considerably... so perhaps compartmentalizing the results inside their own entities context - e.g. a group - might speed things up... -
to TIG
Next idea I think I will try to use EntitiesObserver and EntityObserver to check face after first run calculation process (which take a long time) if face is not modified it will cut off from next calculation.
But after I read Google Developer Sketchup (https://developers.google.com/sketchup/docs/ourdoc/entitiesobserver) it warn me that "WARNING: The methods of this observer fire in such a way that making changes to the model while inside of them is dangerous. If you experience sudden crashes, it could be because of this observer. A potential workaround is to use a ToolsObserver to watch what the user is doing instead."
Please recommend me for my idea.
-
I can't seem to get this to work.
It works on one object on my scene, but crashes SketchUp if I attempt it on other objects (exploded or not, normals facing the right way).
-
@unknownuser said:
I can't seem to get this to work.
It works on one object on my scene, but crashes SketchUp if I attempt it on other objects (exploded or not, normals facing the right way).
How does it 'crash' ?
If you mean it becomes 'unresponsive' [aka a white-out], that doesn't mean it's crashed - it's just taking a long time to do all of the calculations needed - the complexity increases exponentially as everything has to be checked against everything else...You do need to keep things as simplified as you can to ensure it completes within a reasonable time - e.g. use layers etc to hide unwanted objects, ensure the objects are not too complex - and remember that it's pointless casting shadows from [or onto] door-handles, leaves etc - it's to take shadows from block models onto block models etc - also many objects won't cast shadows if they are already within the 'umbra' of other objects, so exclude those from the calculations too...
If it's actually 'crashing' - as in a Bugsplat! - then what error messages do you get, if any
-
I wish this features would be done by SU core ... not ruby ..
sorry for main developers .. if they had made a C++ API and compiled extensions .. or a open source program these tasks could be compute much faster ...
but .. thanks a lot dear TIG , ... this is incredible to simulate shadow system in ruby ... thanks for everything , I don't know what is your name and who you are .. man or woman ? , but thanks dear unknown TIG ...
-
TIG๏ผ
This plugin is wonderful. I'm now planning to make a plugin to export an hourly data of the shadow ratio.
And now checking the code of yours.
Since sketchup API doesn't have enough kind of shadow API,
it would very helpful if you could explain the algorithm to get the shadow.Anyway thanks for your masterpiece.
-
@tetsuyahishida said:
TIG๏ผ
This plugin is wonderful. I'm now planning to make a plugin to export an hourly data of the shadow ratio.
And now checking the code of yours.
Since sketchup API doesn't have enough kind of shadow API,
it would very helpful if you could explain the algorithm to get the shadow.Anyway thanks for your masterpiece.
Read the .rb file's code to see how it works...
The sun has a 'direction' [to get the direction of the rays of sunlight we reverse that vector].
The selected faces are processed in turn - 'selected face'...
It finds the edges of all faces in the model or groups/instances that might shine onto that 'selected face'.
It extrudes these edges into a grouped 'tube' with a very long set of faces, which it then intersects with the 'selected face' and adds faces temporarily.
The tube is erased.
It then has a set of edges representing the outer limits of the 'selected face's' shadows; internal 'coplanar' edges are erased so it's as simple as possible.
Each 'shadow' group is formated as the options set, text added etc...
Obviously it's much more complicated than that [e.g. how to spot if there's a 'hole' in a face], but the principle is as stated... -
Wow now I got it.I guess that's the best way.
Thanks so much.
@tig said:
@tetsuyahishida said:
TIG๏ผ
Read the .rb file's code to see how it works...
The sun has a 'direction' [to get the direction of the rays of sunlight we reverse that vector].
The selected faces are processed in turn - 'selected face'...
It finds the edges of all faces in the model or groups/instances that might shine onto that 'selected face'.
It extrudes these edges into a grouped 'tube' with a very long set of faces, which it then intersects with the 'selected face' and adds faces temporarily.
The tube is erased.
It then has a set of edges representing the outer limits of the 'selected face's' shadows; internal 'coplanar' edges are erased so it's as simple as possible.
Each 'shadow' group is formated as the options set, text added etc...
Obviously it's much more complicated than that [e.g. how to spot if there's a 'hole' in a face], but the principle is as stated... -
I'm afraid I can't make it work. I select a face, then I click tools>ShadowProjector, select lines, or faces, etc. and nothing happens. I haven't been able to get any projection of any shadow.
-
@gonvaz said:
I'm afraid I can't make it work. I select a face, then I click tools>ShadowProjector, select lines, or faces, etc. and nothing happens. I haven't been able to get any projection of any shadow.
Any error messages if done with the Ruby Console open ? Can you post a simple example SKP etc... -
I've been trying to make it work with the attached example.
Sometimes I get "You must preselect at least ONE suitably oriented face!".
When I get no message, I see no projections.
-
@Gonvaz
I am baffled what you are trying to do
This tool projects shadows from objects [essentially faces in the model/groups/components] onto preselected faces in the current context.
The SKP you attached seems to contain no faces whatsoever, so that is an immediate problem!
Your 'pyramid' form is only edges, and whilst you can get edges to cast real-shadows, this tool only considers shadows from faces.
So, it should work given the right inputs - but I suggest you really need to reread and understand the tool's instructions... and then ask it to do what it's capable of, and you will get results.
-
I'm really sorry, TIG! I attached a wrong SKP.
Now I have attached the one I was using to test the plugin.
And I have found why I couldn't make it work: some of the faces were reversed.
I just selected the faces, right-click the selection and click "Reverse Faces".
It works perfectly!
Thanks!
Advertisement