<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!-- <!DOCTYPE Movie SYSTEM "dtd/RVML.dtd"> --> <Movie version='6' width='600' height='400' rate='1' backgroundColor='white' compressed='No' xmlns="http://www.kineticfusion.org/RVML/2.0"> <Title> Circle Examples </Title> <Desc> Illustrates the specification of circles and losses in accuracy when scaling extremely small circles. </Desc> <Definitions> <FontDefinition id='Arial' fontName='Arial' fontStyle='(bold)' fontRange='defined' /> <EditField id='smallCircleHeading' bounds='bounds(-2, -2.0, 150, 14.0)' fieldName='' fontID='Arial' fontSize='10.0' alignment='left' charLimit='0' color='black' properties='(systemFont)'> <InitialText>Small Circle</InitialText> </EditField> <EditField id='largeCircleHeading' bounds='bounds(-2, -2.0,150, 14.0)' fieldName='' fontID='Arial' fontSize='10.0' alignment='left' charLimit='0' color='black' properties='(systemFont)'> <InitialText>Large Circle</InitialText> </EditField> <!--Small Circle --> <Shape id='smallCircle' bounds="auto"> <LineStyles> <LineStyle index="1" width="0.05" color="red"/> </LineStyles> <FillStyles> <ColorFill index="1" color="lightGrey"/> </FillStyles> <Edges> <SetStyle line="1" mainFill="1"/> <Circle r="1"/> </Edges> </Shape> <Shape id='largeCircle' bounds="auto"> <LineStyles> <LineStyle index="1" width="0.05" color="red"/> </LineStyles> <FillStyles> <ColorFill index="1" color="lightGrey"/> </FillStyles> <Edges> <SetStyle line="1" mainFill="1"/> <Circle r="50"/> </Edges> </Shape> <Shape id='largeCircleNoFill' bounds="auto"> <LineStyles> <LineStyle index="1" width="0.05" color="navy"/> </LineStyles> <Edges> <SetStyle line="1"/> <Circle r="50"/> </Edges> </Shape> </Definitions> <Timeline> <Frame> <Place name="smallCircleHeading" depth="1" x="100" y="30"/> <Place name="smallCircle" depth="2"> <Transform scaleX="50" scaleY="50" translateX="150" translateY="150"/> </Place> <Place name="largeCircleHeading" depth="3" x="400" y="30"/> <Place name="largeCircle" depth="4" x="450" y="150"/> <Place name="smallCircle" depth="5"> <Transform scaleX="50" scaleY="50" translateX="250" translateY="300"/> </Place> <Place name="largeCircleNoFill" depth="6" x="250" y="300"/> </Frame> </Timeline> </Movie>