#include <SkSVGTypes.h>
|
enum class | Unit {
kUnknown
, kNumber
, kPercentage
, kEMS
,
kEXS
, kPX
, kCM
, kMM
,
kIN
, kPT
, kPC
} |
|
Definition at line 116 of file SkSVGTypes.h.
◆ Unit
Enumerator |
---|
kUnknown | |
kNumber | |
kPercentage | |
kEMS | |
kEXS | |
kPX | |
kCM | |
kMM | |
kIN | |
kPT | |
kPC | |
Definition at line 118 of file SkSVGTypes.h.
118 {
120 kNumber,
121 kPercentage,
122 kEMS,
123 kEXS,
124 kPX,
125 kCM,
126 kMM,
127 kIN,
128 kPT,
129 kPC,
130 };
◆ SkSVGLength() [1/3]
constexpr SkSVGLength::SkSVGLength |
( |
| ) |
|
|
inlineconstexpr |
◆ SkSVGLength() [2/3]
◆ SkSVGLength() [3/3]
◆ operator!=()
bool SkSVGLength::operator!= |
( |
const SkSVGLength & |
other | ) |
const |
|
inline |
Definition at line 141 of file SkSVGTypes.h.
141{ return !(*this == other); }
◆ operator=()
◆ operator==()
bool SkSVGLength::operator== |
( |
const SkSVGLength & |
other | ) |
const |
|
inline |
Definition at line 138 of file SkSVGTypes.h.
138 {
139 return fUnit == other.fUnit && fValue == other.fValue;
140 }
◆ unit()
const Unit & SkSVGLength::unit |
( |
| ) |
const |
|
inline |
◆ value()
const SkScalar & SkSVGLength::value |
( |
| ) |
const |
|
inline |
The documentation for this class was generated from the following file: