Hi everyone,

when moving object clones, Inkscape automatically adds a `transform: translate(x, y)` filter to the `<use>` object. However, like many SVG elements, the `<use>` object supports `x` and `y` translation directly, as per the specification. Can't we use the `x` and `y` parameters of use objects directly, instead of attaching a `transform` parameter? This would reduce complexity, which e.g. causes firefox to render SVGs incorrectly under certain circumstances. I already had a look at src/object/sp-use.cpp, but it does not have a dedicated set_transform or set_item_transform method.

Thanks a lot in advance!

Lukaro