This class implements the styles method and the transform methods.
RVG::Use.new(obj, x=0, y=0, width=nil, height=nil)-> aUse
This method is usually invoked indirectly via the
use
method in the RVG, RVG::ClipPath, RVG::Group, and RVG::Pattern classes.
The use object is similar to a group. Any styles specified on the use will propogate to the referenced object. However, styles on the referenced object will override the styles specified on the RVG::Use object.
use
.What happens when a 'use' has chained transform methods
What happens when a 'use' has a chained 'style' method
Also see the example for RVG.new and the example for RVG::Group.new.