File: conic.xml

package info (click to toggle)
jsxgraph 1.3.5%2Bdfsg1-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 26,044 kB
  • sloc: xml: 5,869; java: 1,072; python: 747; php: 192; makefile: 146; sh: 47
file content (28 lines) | stat: -rw-r--r-- 662 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 conic 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>
		<conic 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>
		</conic>
	</elements>
	<constraints>
		<!-- -->
	</constraints>
</construction>