diff --git a/EGkFrame3d.h b/EGkFrame3d.h index 6c35eb0..5fb7f16 100644 --- a/EGkFrame3d.h +++ b/EGkFrame3d.h @@ -1,7 +1,7 @@ //---------------------------------------------------------------------------- -// EgalTech 2013-2014 +// EgalTech 2013-2023 //---------------------------------------------------------------------------- -// File : EGkFrame3d.h Data : 30.05.14 Versione : 1.5e10 +// File : EGkFrame3d.h Data : 20.07.23 Versione : 2.5g2 // Contenuto : Dichiarazione della classe Reference Frame 3d. // // @@ -167,3 +167,12 @@ AreSameFrame( const Frame3d& frRef1, const Frame3d& frRef2) return false ; return true ; } + +//---------------------------------------------------------------------------- +// Verifica se il riferimento coincide con quello globale (o identità) +//---------------------------------------------------------------------------- +inline bool +IsGlobFrame( const Frame3d& frRef) +{ + return AreSameFrame( frRef, GLOB_FRM) ; +}