Is there any Java Framework to manipulate/draw a Cartesian plane? -
i know if there java framework or resource draw and/or manipulate cartesian plane. obviously, can done using java 2d, implement resources "zoom in" , "zoom out" not trivial develop
thanks lot!
java 2d contains affinetransform
class, makes easy use matrix specify transformation on cartesian plane. it's easy apply transform graphics2d
object through settransform
method.
you can use standard transform apply own coordinate system onto screen coordinates. can manipulate transform account panning , zooming. allow use own coordinate system laying out content while abstracting away of panning , zooming functionality 1 place.
Comments
Post a Comment