Closed ppizarror closed 1 year ago
Hi! acme
has been initially thought only for strictly 3D geometrical operations but I can add the feature you requested.
If you need 2D support, you have good ideas on how to support mixed 2/3D operations, and you want to contribute to the repo, we can think about adding together the 2D section to acme
.
Greetings!
I think you are right... maybe we can address that in the future, I'll close this for now as the main goal must be a complete 3D Framework. Thanks!
Hi! I need the
(U, V)
coordinates given a(X, Y, Z)
coplanar to a planep
, for example, for plane defined in:And taking as basis
e1
,e2
:Computing UV for any coordinate is relatively easy, by computing the
dot
product of the base and the relative distance of any point to the origin of the plane. For example, for pointpoint
:The question is, can we add this feature to the plane object? It is desirable in acme? All previous steps can be resumed on a single function
Examples:
Greetings!