Indicates that this transform is linear. That is, given two * points P and Q, and scalar coefficients a and b, then * * T( a*P + b*Q ) = a * T(P) + b * T(Q) */
| 313 | * T( a*P + b*Q ) = a * T(P) + b * T(Q) |
| 314 | */ |
| 315 | bool |
| 316 | IsLinear() const override |
| 317 | { |
| 318 | return true; |
| 319 | } |
| 320 | |
| 321 | |
| 322 | /** Indicates the category transform. |
nothing calls this directly
no outgoing calls
no test coverage detected