| 142 | |
| 143 | //----------------------------------------------------------------------- |
| 144 | template<class VC> void math_stroke<VC>::width(double w) |
| 145 | { |
| 146 | m_width = w * 0.5; |
| 147 | if(m_width < 0) |
| 148 | { |
| 149 | m_width_abs = -m_width; |
| 150 | m_width_sign = -1; |
| 151 | } |
| 152 | else |
| 153 | { |
| 154 | m_width_abs = m_width; |
| 155 | m_width_sign = 1; |
| 156 | } |
| 157 | m_width_eps = m_width / 1024.0; |
| 158 | } |
| 159 | |
| 160 | //----------------------------------------------------------------------- |
| 161 | template<class VC> void math_stroke<VC>::miter_limit_theta(double t) |
no outgoing calls
no test coverage detected