Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am creating a subclass to LuminanceSource. Is there a reason why I should expect to or have to implement rotateCounterClockwise()?

Implications to performance or reliability (or both)?

share|improve this question

1 Answer

up vote 1 down vote accepted

You can always have isRotateSupported() and make that method throw an exception if you don't want to implement it.

It is provided because the interface does not know what your internal structure is like, so otherwise a rotation involves converting your data to a common format, performing the transform, then converting the common format data back into your format.

share|improve this answer
That's right. It exists because the framework can also try to scan at rotation, and that's why this method exists. – Sean Owen Feb 14 '12 at 10:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.