FRX SDK Documentation 2025 SP0
Loading...
Searching...
No Matches
AcGeScale3d.h
Go to the documentation of this file.
1#pragma once
2
3//
4// (C) Copyright 2005-2024 by Graebert GmbH.
5//
6// Permission to use, copy, modify, and distribute this software in
7// object code form for any purpose and without fee is hereby granted,
8// provided that the above copyright notice appears in all copies and
9// that both that copyright notice and the limited warranty and
10// restricted rights notice below appear in all supporting
11// documentation.
12//
13// GRAEBERT PROVIDES THIS PROGRAM "AS IS" AND WITH ALL FAULTS.
14// GRAEBERT SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF
15// MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE. GRAEBERT GMBH
16// DOES NOT WARRANT THAT THE OPERATION OF THE PROGRAM WILL BE
17// UNINTERRUPTED OR ERROR FREE.
18
19class AcGeMatrix3d;
20class AcGeTol;
21
23{
24public:
26 double sx;
27 double sy;
28 double sz;
29
30public:
32 AcGeScale3d(double);
33 AcGeScale3d(double,double,double);
35 operator AcGeMatrix3d(void)const ;
36 bool isEqualTo( AcGeScale3d const &, AcGeTol const & = AcGeContext::gTol)const ;
37 bool operator!=( AcGeScale3d const &)const ;
38 bool operator==( AcGeScale3d const &)const ;
47 AcGeScale3d & set(double,double,double);
50 AcGeScale3d inverse(void)const ;
52 AcGeScale3d operator*(double)const ;
53 double & operator[](unsigned int);
54 double operator[](unsigned int)const ;
56 void getMatrix( AcGeMatrix3d &)const ;
57
58};
#define ARX_API_STATIC
Definition FxARXAPI.h:25
AcGeScale3d & operator=(AcGeScale3d const &)
void getMatrix(AcGeMatrix3d &) const
static ARX_API_STATIC AcGeScale3d const kIdentity
Definition AcGeScale3d.h:25
bool operator!=(AcGeScale3d const &) const
AcGeScale3d(void)
AcGeScale3d & setToProduct(AcGeScale3d const &, AcGeScale3d const &)
AcGeScale3d operator*(AcGeScale3d const &) const
AcGeScale3d & setToProduct(AcGeScale3d const &, double)
double & operator[](unsigned int)
AcGeScale3d operator*(double) const
Frx::Boolean isProportional(AcGeTol const &=AcGeContext::gTol) const
AcGeScale3d & preMultBy(AcGeScale3d const &)
AcGeScale3d & removeScale(AcGeMatrix3d &)
AcGeScale3d & operator*=(AcGeScale3d const &)
bool operator==(AcGeScale3d const &) const
AcGeScale3d & invert(void)
AcGeScale3d & set(double, double, double)
AcGeScale3d inverse(void) const
AcGeScale3d & operator*=(double)
AcGeScale3d & extractScale(AcGeMatrix3d const &)
AcGeScale3d(double, double, double)
double operator[](unsigned int) const
bool isEqualTo(AcGeScale3d const &, AcGeTol const &=AcGeContext::gTol) const
AcGeScale3d(AcGeScale3d const &)
AcGeScale3d(double)
AcGeScale3d & postMultBy(AcGeScale3d const &)
static ARX_API_STATIC AcGeTol gTol
Definition AcGeContext.h:24