On Thursday 11 October 2001 20:02, annie lu wrote:
> Hi all,
>
> I have a question with xml dom and svg dom.
> I am not quite understand how svg dom work, there's a
> svg dom interface in w3c specification. But when
> coding, we use org.w3c.dom.Element to create a 'rect'
> element, this looks the same way of create a element
> for xml dom. What is the use of svg dom? Why don't we
> use SVGRect to create a rect element?

The SVG DOM is just an extension to the DOM core.

Basically, the DOM core provides an API to represent an XML document in 
memory. You can manage SVG document using the DOM Core as SVG is XML.

Futher informations or convenient methods then can be invoked on the SVG DOM 
(such as getCTM()...)

Thierry.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to