nicholaswmin
nicholaswmin

Reputation: 22939

Changing the width/height of an SVG path

How can I change the width/height of a selected path in SVG-edit.

The above command has absolutely no effect on the path. Resizing the bounding box just resizes the bounding box, but not the path itself.

Upvotes: 20

Views: 74364

Answers (1)

Plynx
Plynx

Reputation: 11461

For a path, you probably want to apply a transform rather than edit the path coordinates, which can get complicated. See http://www.w3.org/TR/SVG/coords.html#TransformAttribute

Upvotes: 19

Related Questions