Kstars
            
 
   21        explicit Matrix(
double);
 
   22        Matrix &operator+=(
const Matrix &);
 
   23        Matrix &operator-=(
const Matrix &);
 
   24        Matrix &operator*=(
const Matrix &);
 
   25        Matrix &operator*=(
double);
 
   26        Matrix &operator/=(
double);
 
   29        friend Matrix operator+(
const Matrix &, 
const Matrix &);
 
   30        friend Matrix operator-(
const Matrix &, 
const Matrix &);
 
   31        friend Matrix operator*(
const Matrix &, 
double);
 
   32        friend Matrix operator*(
const Matrix &, 
const Matrix &);
 
   33        friend GuiderUtils::Vector operator*(
const GuiderUtils::Vector &, 
const Matrix &);
 
   36Matrix Translate(
const GuiderUtils::Vector &);
 
   37Matrix Scale(
const GuiderUtils::Vector &);
 
   38Matrix RotateX(
double);
 
   39Matrix RotateY(
double);
 
   40Matrix RotateZ(
double);
 
   41Matrix Rotate(
const GuiderUtils::Vector &v, 
double angle);
 
   42Matrix Transform(
const GuiderUtils::Vector &v1, 
const GuiderUtils::Vector &v2, 
const GuiderUtils::Vector &v3);
 
  
 
  This file is part of the KDE documentation.
  Documentation copyright © 1996-2025 The KDE developers.
  Generated on Fri May 2 2025 12:02:38 by
  
doxygen 1.13.2 written
  by 
Dimitri van Heesch, © 1997-2006
  
  KDE's Doxygen guidelines are available online.