Dokument
libageo · Transformation · Erzeugen
Synopsis
» trafo ()
trafo (double[16])
trafo (vector)
trafo (double phi, line)
trafo (double phi, circle)
trafo (double phi, cylinder)
Beschreibung
· Erzeugen einer Kreises aus Punkt, Richtungsvektor und Radius
Rotation ist rechte-hand-regel
· Erzeugen eines Kreises aus drei Punkten
Beispiele
point  p(10,20,30);
vector v(0,0,1);
double r = 5;
trafo cr(p,v,r);



// cr=trafo(...)
trafo cr(10,20,30, 0,0,1, 5);
// cr=trafo(...)
trafo cr( point(10,20,30), vector(0,0,1), 5 ); // cr=trafo(...)
point  p1(10,20,30);
point  p2(40,20,30);
point  p3(25,40,30);
trafo cr(p1,p2,p3);


// cr=trafo(...)
trafo cr( point(10,20,30), point(40,20,30), point(25,40,30) ); // cr=trafo(...)
Siehe auch
Alle Methoden und Operatoren.