Changes between Version 2 and Version 3 of SVG TODO List - Short notes
- Timestamp:
- Dec 11, 2006, 3:50:01 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SVG TODO List - Short notes
v2 v3 10 10 with <pattern> and negative width/height issues (hixie tests)[[BR]] 11 11 Memory usage is twice as high as needed.[[BR]][[BR]] 12 * SVGMatrix* -> AffineTransform (pass by value, not by pointer)[[BR]]13 Change AffineTransform for SVG needs, and kill the whole SVGMatrix stuff[[BR]][[BR]]14 12 * SVGAngle* -> SVGAngle (pass by value, not by pointer)[[BR]] 15 13 * SVGPreserveAspectRatio* -> SVGPreserveAspectRatio (pass by value, not by pointer)[[BR]] 16 14 17 15 JavaScript / ObjC SVG DOM issues:[[BR]] 18 * SVGPoint/SVGRect/SVGNumber must be autogenerated. These are POD types[[BR]]19 (no pointers) and currently have hand written JS/ObjC wrappers. Kill those.[[BR]][[BR]]20 16 * SVGPoint/SVGRect/SVGNumber have assignment problems, ie. document.rootElement.viewBox.x.baseVal.value = 100[[BR]] 21 17 won't work at the moment (ask WildFox for details). Possible solutions already in mind.[[BR]][[BR]]