Show messages:
1-5
…
166-185
186-205
206-225
226-245
246-265
266-285
286-305
…
366-372
From: Michael Gibson
Hi Tudor, there is a new function for edge curves in the next beta: edge.getIsTangentEdge() , it should help for making a script that would hide things like you want.
The way you will be able to use it is like this:
code:
var breps = moi.geometryDatabase.getObjects().getBReps();
for ( var i = 0; i < breps.length; ++i )
{
var edges = breps[i].getEdges();
for ( var j = 0; j < edges.length; ++j )
{
if ( edges[j].getIsTangentEdge() )
edges[j].hidden = true;
}
}
- Michael
From: Cemortan_Tudor
awesome ! thanks !
From: Cemortan_Tudor
Ohayo
I have a modelling question (used sweep to spiral)
needs to be spiral, i've tried different shapes, all awkward
Attachments:
test.3dm
From: Frenchy Pilou (PILOU)
Generally when you use the Sweep function it's a good thing to put 2 rails for control each side of the profil on the Helix...
From: Michael Gibson
Hi Tudor, I think you want the "Twist = Flat" option and also use "Set flat direction" along your axis:
The "Twist = Flat" option means the profile will not rotate freely around the rail tangent, it will be limited to only pivot around the "flat direction".
The default "Flat direction" is the world z axis, so when you have some other direction you need to click "Set flat direction" to set it.
Another way you can make this kind of thing is by extruding your profile out straight and then use Transform > Deform > Twist on it.
- Michael
Image Attachments:
tudor_sweep_flat1.jpg
tudor_sweep_flat2.jpg
From: Cemortan_Tudor
@PILOU
i need Mike result, the way u are showing come to same issue that I have
From: Cemortan_Tudor
@Michael Gibson
I haven't used twist modifier so deeply, can u explain step by step how I can reach such result ?
mb gif animation
From: Michael Gibson
Hi Tudor, the Twist way goes like this - you start out with a straight extrusion:
Select the straight extursion block and then run Transform > Deform > Twist .
At the prompts where it asks you for the start and end point of the twist access, pick these 2 points on your cylinder's axis:
Then you input an angle value, each 360 degrees will be one turn, so you could type in 5*360 to do 5 turns for example:
- Michael
Image Attachments:
tudor_twist1.jpg
tudor_twist2.jpg
tudor_twist3.jpg
From: Frenchy Pilou (PILOU)
Will be the same with only one turn...depending of what result you want...
In fact the "Flat Direction"
= the Rotation of the Profil depending of it's original position: the Flat Direction change artificially it's position! :)
Here Horizontal or Vertical
A Twist or a Sweep to an Helix will give the same result...in this case...
From: Cemortan_Tudor
thanks both !
I always tried to avoid twist or flow, unpredictable results .. Boolean or fillets could not execute (since v3 haven't tried new ones)
From: BurrMan
you can also explore placing a centerline up a helix, then lofting the 2. Shell the result and pipe the centerline with what you wish.
So easier to create the 2 curves and flow those into a shape, that can then be made into a solid with the other steps.
From: Cemortan_Tudor
))) can u make a gif for that ! I'd appreciate 3'd method
From: Frenchy Pilou (PILOU)
From Burmann method :)
Draw an Arc-cicle for the future Flow
Draw a vertical line, Draw an Helix,
Loft them
Draw another vertical Line
Call Flow
Select Surface
Select Second vertical Line , Select Arc Line
Flow
@ Michael : why we can't retake the first vertical line as Base Line for the Flow Function ?
PS
I have forgotten to make a Tube but that is trivial :)
and a Shell but that will be exactly the same except a thickness to the Helicoïd surface! :)
From: BurrMan
Doing the surface creation and shelling "after" tge flow, allows me to monitor the validity of the solid better. I would expect the loft or shell to fail if i had created a "to tight to bend" situation, where flowing the solid result, could more easily allow me to create some type of "bad" geometry (folding over on itself, etc.)
From: Cemortan_Tudor
u are moi monsters, perfect results !
thanks !
From: Michael Gibson
Hi Pilou,
re:
@ Michael : why we can't retake the first vertical line as Base Line for the Flow Function ?
You can, but it's a little difficult to select it since it's in the same location as a surface edge and the edge is getting priority.
Use Edit > Hide to hide the surface so you can then click select the first vertical line for the Flow base line.
- Michael
From: Frenchy Pilou (PILOU)
Thx for the Info!
I was not enough perceiving! :)
From: Cemortan_Tudor
ohayo !
Michael how can I add a script page to show last updates of scripts (remove history tabs) or better will be github ?
From: Michael Gibson
Hi Tudor, you could make a post here in the forum and then link to the forum thread. Github is a good idea too though.
- Michael
From: Cemortan_Tudor
rectangle interactive
the idea is to combines all rectangles under one shortcut and switch between them from hotkeys
q rect
w rect center
e rect 3pt
r - will be added -
http://moi3d.com/forum/index.php?webtag=MOI&msg=8665.164 -> rect with 3ptcenter ~ another way to grow new rectangles
script is unfinished
Attachments:
rect_interactive.js
Show messages:
1-5
…
166-185
186-205
206-225
226-245
246-265
266-285
286-305
…
366-372