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-2024 The KDE developers.
Generated on Mon Nov 4 2024 16:38:43 by
doxygen 1.12.0 written
by
Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.