#include <tvu_typesdef.h>
Inheritance diagram for CTAngles::
Public Methods | |
CTAngles () | |
CTAngles (double _Alpha, double _Beta, double _Gamma) | |
DEFINE_ID_FUNCTIONS (CTAngles, CTObject, CLASSNAME_TYPE_ANGLES_ID, CLASSNAME_TYPE_ANGLES) public | |
void | FromDirection (CTPoint3D &From, CTPoint3D &To) |
virtual TBOOL | OnSaving (LPCTFile pFile, TINT Marge) |
Save the object. More... | |
virtual TBOOL | OnSaving (TLPSTR pBuffers, TINT Marge) |
virtual TBOOL | OnLoading (LPTBYTE *lpBuffers) |
Load the object from buffers. More... | |
virtual TBOOL | OnLoading (LPCTFile pFile) |
Load the object a file. More... | |
TBOOL | operator== (TANGLES a) |
Operations Comparing operations. More... | |
TBOOL | operator== (CTAngles &a) |
TBOOL | operator!= (TANGLES a) |
TBOOL | operator!= (CTAngles &a) |
CTAngles& | operator= (CTAngles &Angles) |
TANGLES | ANGLES () |
Convert. More... | |
Data Fields | |
double | Alpha |
Data. More... | |
double | Beta |
Data. More... | |
double | Gamma |
Data. More... |
|
Convert.
02011 { TANGLES Angles = {Alpha, Beta, Gamma}; return Angles; }; |
|
Load the object a file.
Reimplemented from CTObject. |
|
Load the object from buffers.
Reimplemented from CTObject. |
|
Save the object.
Reimplemented from CTObject. |
|
Operations Comparing operations.
02004 { return (Alpha == a.a) && (Beta == a.b) && (Gamma == a.g);} ; |
|
Data.
|
|
Data.
|
|
Data.
|