File: circle.xml

package info (click to toggle)
jsxgraph 0.98~dfsg1-3
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 28,132 kB
  • ctags: 1,325
  • sloc: xml: 5,869; java: 1,072; python: 667; php: 355; makefile: 129; sh: 36
file content (28 lines) | stat: -rw-r--r-- 665 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!-- This example ilustrates the use of the circle element   
Concretely, the circle   (x-1)^2 + (y-3)^2 = 4   has matrix
(  1  0 -1 )
(  0  1 -3 )
( -1 -3  6 )
-->


<construction xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xml/intergeo.xsd">
	<elements>
		<circle id="c">
			<matrix>
				<double>1</double>
				<double>0</double>
				<double>-1</double>
				<double>0</double>
				<double>1</double>
				<double>-3</double>
				<double>-1</double>
				<double>-3</double>
				<double>6</double>
			</matrix>
		</circle>
	</elements>
	<constraints>
		<!-- -->
	</constraints>
</construction>