File: polygon.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 (65 lines) | stat: -rw-r--r-- 1,792 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!-- This file is to illustrate the use of the element polygon and constraint polygon_by_vertices.
     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>
		<point id="A">
			<homogeneous_coordinates>
				<double>0.0</double>
				<double>0.0</double>
				<double>1.0</double>
			</homogeneous_coordinates>
		</point>
		<point id="B">
			<homogeneous_coordinates>
				<double>0.0</double>
				<double>1.0</double>
				<double>1.0</double>
			</homogeneous_coordinates>
		</point>
		<point id="C">
			<homogeneous_coordinates>
				<double>1.0</double>
				<double>1.0</double>
				<double>1.0</double>
			</homogeneous_coordinates>
		</point>
		<polygon id="p">
			<list_of_vertices_coordinates>
				<homogeneous_coordinates>
					<double>0</double>
					<double>0</double>
					<double>1</double>
				</homogeneous_coordinates>
				<homogeneous_coordinates>
					<double>0</double>
					<double>1</double>
					<double>1</double>
				</homogeneous_coordinates>
				<homogeneous_coordinates>
					<double>1</double>
					<double>1</double>
					<double>1</double>
				</homogeneous_coordinates>
			</list_of_vertices_coordinates>
		</polygon>
	</elements>
	<constraints>
		<free_point>
			<point out="true">A</point>
		</free_point>
		<free_point>
			<point out="true">B</point>
		</free_point>
		<free_point>
			<point out="true">C</point>
		</free_point>
		<polygon_by_vertices>
			<polygon out="true">p</polygon>
			<list_of_vertices>
				<point>A</point>
				<point>B</point>
				<point>C</point>
			</list_of_vertices>
		</polygon_by_vertices>
	</constraints>
</construction>