KHTML
Go to the documentation of this file.
   28 #include "wtf/RefCounted.h" 
   33     class SVGStyledElement;
 
   35     class SVGAngle : 
public RefCounted<SVGAngle> {
 
   41             SVG_ANGLETYPE_UNKNOWN           = 0,
 
   42             SVG_ANGLETYPE_UNSPECIFIED       = 1,
 
   43             SVG_ANGLETYPE_DEG               = 2,
 
   44             SVG_ANGLETYPE_RAD               = 3,
 
   45             SVG_ANGLETYPE_GRAD              = 4
 
   48         SVGAngleType unitType() 
const;
 
   53         void setValueInSpecifiedUnits(
float valueInSpecifiedUnits);
 
   54         float valueInSpecifiedUnits() 
const;
 
   56         void setValueAsString(
const String&);
 
   57         String valueAsString() 
const;
 
   59         void newValueSpecifiedUnits(
unsigned short unitType, 
float valueInSpecifiedUnits);
 
   60         void convertToSpecifiedUnits(
unsigned short unitType);
 
   63         static double todeg(
double rad);
 
   64         static double torad(
double deg);
 
   67         static double shortestArcBisector(
double angle1, 
double angle2);
 
   73         SVGAngleType m_unitType;
 
   75         float m_valueInSpecifiedUnits;
 
   76         mutable String m_valueAsString;
 
DOM::QualifiedName orientAttr
 
  
This file is part of the KDE documentation.
Documentation copyright © 1996-2020 The KDE developers.
Generated on Mon Jun 22 2020 13:26:19 by
doxygen 1.8.7 written
by 
Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.