File: foci_of_ellipse.xml

package info (click to toggle)
jsxgraph 1.11.1%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 24,984 kB
  • sloc: javascript: 81,688; xml: 5,869; java: 1,072; php: 281; makefile: 189; python: 174; cpp: 76; sh: 12
file content (40 lines) | stat: -rw-r--r-- 1,089 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
29
30
31
32
33
34
35
36
37
38
39
40
<!-- This file illustrates the use of ellipse element and foci_of_conic constraint.
     It still has not been run on any DGS, so it may contain bugs. -->
<construction xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xml/intergeo.xsd">
	<elements>
		<ellipse id="e">
			<matrix>
				<double>3</double>
				<double>0</double>
				<double>0</double>
				<double>0</double>
				<double>4</double>
				<double>0</double>
				<double>0</double>
				<double>0</double>
				<double>12</double>
			</matrix>
		</ellipse>
		<point id="f1">
			<homogeneous_coordinates>
				<double>-1</double>
				<double>0</double>
				<double>1</double>
			</homogeneous_coordinates>
		</point>
		<point id="f2">
			<homogeneous_coordinates>
				<double>1</double>
				<double>0</double>
				<double>1</double>
			</homogeneous_coordinates>
		</point>
	</elements>
	<constraints>
		<foci_of_conic>
			<point out="true">f1</point>
			<point out="true">f2</point>
			<conic>e</conic>
		</foci_of_conic>
	</constraints>
</construction>