]> source.dussan.org Git - svg.js.git/commitdiff
README.md - category edits 407/head
authorsnowyplover <the.estuary@gmail.com>
Fri, 20 Nov 2015 12:42:21 +0000 (04:42 -0800)
committersnowyplover <the.estuary@gmail.com>
Fri, 20 Nov 2015 12:42:21 +0000 (04:42 -0800)
The note for "Size and position" has been edited for consistency.

The category "Altering the element tree" has been renamed "Document tree manipulations".

The `transform()`, `rotate()`, `skew()`, `scale()`, and `translate()` methods have been given their own category: "Transforms".

README.md

index f194ee1c3eac70115ffccb8f91b64d2d5d3909c8..0c2da591592e18ef20630fe9ea2a1c77f40edef7 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1338,9 +1338,9 @@ rect.toggleClass('pink-flower')
 
 ## Size and position
 
-In addition to the generalized transform method, there are several specific methods for moving elements. While moving an element by directly setting its attributes will only work if the attributes are used natively by that type of element, these positioning methods are much more convenient as they work for all element types.
+While positioning an element by directly setting its attributes works only if the attributes are used natively by that type of element, the positioning methods described below are much more convenient as they work for all element types.
 
-For example, the following code works because each element is moved by setting native attributes:
+For example, the following code works because each element is positioned by setting native attributes:
 
 ```javascript
 rect.attr({ x: 20, y: 60 })
@@ -1361,7 +1361,7 @@ rect.cx(20).cy(60)
 circle.x(50).y(40)
 ```
 
-It is important to note, though, that these methods are only intended for use with user (unitless) coordinates. If, for example, an element has its size set via percentages or other units, the movement methods that address its native attributes will most likely still work, but the ones that address non-native attributes will give unexpected results -- as both getters and setters!
+It is important to note, though, that these methods are only intended for use with user (unitless) coordinates. If, for example, an element has its size set via percentages or other units, the positioning methods that address its native attributes will most likely still work, but the ones that address non-native attributes will give unexpected results -- as both getters and setters!
 
 
 ### size()
@@ -1556,7 +1556,7 @@ rect.dy(200)
 
 __`returns`: `itself`__
 
-## Altering the element tree
+## Document tree manipulations
 
 ### clone()
 To make an exact copy of an element the `clone()` method comes in handy:
@@ -1665,7 +1665,7 @@ var svgString = drawing.ungroup().svg()
 __`returns`: `itself`__
 
 
-## Geometry
+## Transforms
 
 ### transform()
 
@@ -1776,6 +1776,9 @@ The `translate()` method will take an `x` and `y` value:
 rect.translate(0.5, -1)
 ```
 
+
+## Geometry
+
 ### viewbox()
 
 The `viewBox` attribute of an `<svg>` element can be managed with the `viewbox()` method. When supplied with four arguments it will act as a setter: