MoI discussion forum
MoI discussion forum

Full Version: Elephant Repository

Show messages:  1-9  …  350-369  370-389  390-409  410-429  430-449  450-469  470-489  490-503

From: Frenchy Pilou (PILOU)
8 Jun 2020   [#410]
Extention's Nodes
Vector Section
VecAngle Node
English

https://moiscript.weebly.com/vector.html#vecangle




From: bemfarmer
9 Jun 2020   [#411] In reply to [#409]
There is an excellent series of YouTube videos about vectors and matrices here:

https://www.youtube.com/playlist?list=PLZHQObOWTQDPD3MizzM2xVFitgF8hE_ab

I've watched only #6 and #10, so far. The perspective is about areas and volumes of linear transformations.

#10 is about Cross Product, in 2D and 3D. A negative determinate means that the 3rd vector of the cross product is in the negative direction.
So maybe the vector.js code for Cross Product, line 287, should take the determinant (3D?), and then the code in line 34 modified so that in the case of a negative
determinant, bPt1 would be modified to be (0, 0, -1), instead of (0, 0, +1). (?)

Then the third vector "c" would still follow the right hand rule.
(Note that point "c" is calculated correctly, it is just the vector display that is not correctly oriented for the case of a negative determinant.)

In Pilou's example, when the order of the Cross Product is reversed, the sign of the determinant is reversed. The displayed vector should be negated.

- Brian
From: Frenchy Pilou (PILOU)
9 Jun 2020   [#412] In reply to [#411]
Cool pedagogic serial!
From: Frenchy Pilou (PILOU)
9 Jun 2020   [#413]
Extention's Nodes
Vector Section
LineByVec Node
English

https://moiscript.weebly.com/vector.html#linebyvect




From: Frenchy Pilou (PILOU)
10 Jun 2020   [#414]
Extention's Nodes
Vector Section
Rotate Vector Node
English

https://moiscript.weebly.com/vector.html#rotatevec




From: Frenchy Pilou (PILOU)
24 Jun 2020   [#415]
Extention's Nodes
Vector Section
Line2Vec Node
English
https://moiscript.weebly.com/vector.html#line2vec




From: Frenchy Pilou (PILOU)
24 Jun 2020   [#416]
Extention's Nodes
Vector Section
VectBy2Pts
English

https://moiscript.weebly.com/vector.html#vecby2pts




From: Frenchy Pilou (PILOU)
1 Jul 2020   [#417]
Extention's Nodes
Vector Section
Scale Vector node
English

https://moiscript.weebly.com/vector.html#scalevec




From: Frenchy Pilou (PILOU)
1 Jul 2020   [#418]
Extention's Nodes
Vector Section
PointDist Node
English




From: Frenchy Pilou (PILOU)
2 Jul 2020   [#419]
Extention's Nodes
Vector Section
CrossProduct Node
English




From: Finema
2 Jul 2020   [#420] In reply to [#419]
what's that thing for?
From: Frenchy Pilou (PILOU)
2 Jul 2020   [#421] In reply to [#420]
It's for all operations you can make if you want use Vectors inside your coding...
show Normal of surfaces, graphic's power of something, etc...




From: Karsten (KMRQUS)
4 Jul 2020   [#422] In reply to [#408]
Hello Brian,

I had a look to the code. I'm sure you will not find a bug. It seem that the line 35 generates the problem.
The function to create the vector-display works as follow:
- creating a line with length 1 and a cone for the tip of the base vector display
- orient this base vector display to start and end of the vector that should displayed by using "factory('orientlinetoline', that.bVec, bPt0, bPt1, tPt0, tPt1, null, 'scale, stretch');"

but it seems that here is a problem - orientlinetoline generates weired results (tested with MoI V3) when the target has the same orientation as the start orientation especially in the main directions. After the factory is initialised and get other inputs (not in the main dirs) everything works fine as espected. Maybe Michael have a look.

Which Version do you an Pilou use at the moment.

A nice day to all
Karsten





Image Attachments:
LineToLine.gif  LineToLine2.gif 


From: wayne hill (WAYNEHILL5202)
4 Jul 2020   [#423]
When the X and Y are at zero, the Z axis vector defaults to positive. Using James's Node Editor extended version with MoI v4 January 2020 Beta.




From: bemfarmer
4 Jul 2020   [#424] In reply to [#422]
Thank you Karsten.
I'm using the nodeeditor version updated by James.

... perceived possible problem with using orient line to line command to place cross product vector...

- Brian
(Most of post deleted)
From: Frenchy Pilou (PILOU)
4 Jul 2020   [#425] In reply to [#422]
<< What version do you use ?
Last version of James & V 4 beta
From: Karsten (KMRQUS)
4 Jul 2020   [#426]
Hello Brian, Hello Wayne,

it's difficult to say what happens. I think that internally a transformation matrix is used for this operation/factory. To create one, you need additional informations like the rotational information that are not given by two lines and certainly not when they are parallel. I had the same problem for the getCrvSFrame. The only info you have here is the direction/tangent of the curve. To create a frame/local coordinate system I used the dominant directions of the main coordinate system. That leads to some weired effects while changing the curves geometry -> flipping axes. Another method would be to use also the center of a soothing circle, but that would fail for straight lines. And yes - it is similar to the gimbal lock. A possible workarround is to add tiny values for the display of the vector - that helps the factory to calculate the orientation.

Maybe Michael can tell us what's going on under the bonnet.

A nice day to all
Karsten
From: Frenchy Pilou (PILOU)
4 Jul 2020   [#427]
Extention's Nodes
Vector Section
VecMagn Node
English
https://moiscript.weebly.com/vector.html#vecmagn


From: bemfarmer
4 Jul 2020   [#428] In reply to [#426]
Possibly relevant are Michael's posts here:
https://moi3d.com/forum/index.php?webtag=MOI&msg=9864.5
- Brian
From: Michael Gibson
4 Jul 2020   [#429] In reply to [#422]
Hi Karsten,

re:
> but it seems that here is a problem - orientlinetoline generates weired results (tested with MoI V3) when the
> target has the same orientation as the start orientation especially in the main directions. After the factory is
> initialised and get other inputs (not in the main dirs) everything works fine as espected. Maybe Michael have a look.

It looks like a bug in orient line to line, part of how it works is it takes the cross product between the 2 directions to make a vector to rotate around but it is not handling the case well when the 2 directions are parallel when the cross product is undefined. I'll investigate to see if I can fix up that case.

- Michael

Show messages:  1-9  …  350-369  370-389  390-409  410-429  430-449  450-469  470-489  490-503