Précédent   Forum des professionnels en informatique > Webmasters - Développement Web > JavaScript > Bibliothèques & Frameworks > jQuery
jQuery Forum d'entraide sur le framework jQuery. Avant de poster : Tutoriels jQuery, FAQ jQuery, Tous les tutoriels JavaScript, Toutes les FAQ JavaScript
Partagez cette discussion sur d'autres réseaux sociaux : Viadeo Twitter Google Facebook Digg Delicious MySpace Yahoo
Réponse Proposer ce sujet en actualité
 
Outils de la discussion
Publicité
'
Vieux 05/12/2010, 14h00   #1
Membre Expert
 
Inscription : décembre 2006
Messages : 2 048
Détails du profil
Informations forums :
Inscription : décembre 2006
Messages : 2 048
Points : 1 087
Points : 1 087
Par défaut Tracer des flèches dans un tableau

Bonjour,
imaginons un tableau HTML dont le rendu serait le suivant :
Code :
1
2
3
4
5
6
7
8
 
+---+---+---+
| A |   | B |
+---+---+---+
|   |   |   |
+---+---+---+
| C |   | D |
+---+---+---+
J'aimerais tracer une flèche allant du coin supérieur gauche de la cellule C vers le coin inférieur droit de la cellule B.

Est-ce envisageable de façon plus ou moins simple avec jQuery, ou une bibliothèque compatible avec jQuery ?
rambc est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 06/12/2010, 08h42   #2
Rédacteur/Modérateur
 
Avatar de SpaceFrog
 
Homme
Développeur Web Php Mysql Html Javascript CSS Apache - Intégrateur - Analyste Programmeur
Inscription : mars 2002
Messages : 29 994
Détails du profil
Informations personnelles :
Sexe : Homme
Localisation : Royaume-Uni

Informations professionnelles :
Activité : Développeur Web Php Mysql Html Javascript CSS Apache - Intégrateur - Analyste Programmeur
Secteur : Industrie

Informations forums :
Inscription : mars 2002
Messages : 29 994
Points : 45 067
Points : 45 067
en passant par un addon de ce type http://www.openstudio.fr/Library-for...wing-with.html
__________________
Ma page Developpez
Président du CCMPTP (Comité Contre le Mot "Problème" dans les Titres de Posts)
Deux règles du succès: 1) Ne communiquez jamais à quelqu'un tout votre savoir...
Votre post est résolu ? Alors n'oubliez pas le Tag


réalisations :www.planet-languages.com|www.saftair.com| www.ouestisol.fr | www.sebemex.fr | www.extramiante.fr | www.sistac-alizay.fr | www.acoustishop.fr | www.litt.fr | www.ouestventil.fr
SpaceFrog est actuellement connecté   Envoyer un message privé Réponse avec citation 00
Vieux 06/12/2010, 13h13   #3
Membre Expert
 
Inscription : décembre 2006
Messages : 2 048
Détails du profil
Informations forums :
Inscription : décembre 2006
Messages : 2 048
Points : 1 087
Points : 1 087
Merci.

Malheureusement, le souci de ce type de bibliothèque est que le dessin vit dans un div, et il ne semble pas possible de mettre du contenu HTML dans ce div.
rambc est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 07/12/2010, 22h48   #4
Rédacteur
 
Avatar de danielhagnoul
 
Homme Daniel Hagnoul
Étudiant perpétuel
Inscription : février 2009
Messages : 3 221
Détails du profil
Informations personnelles :
Nom : Homme Daniel Hagnoul
Âge : 61
Localisation : Belgique

Informations professionnelles :
Activité : Étudiant perpétuel
Secteur : Enseignement

Informations forums :
Inscription : février 2009
Messages : 3 221
Points : 6 767
Points : 6 767
Bonsoir

Le SVG c'est l'avenir du graphique web, un exemple réaliser avec Inkscape et intégrer dans une page web. La version SVG est utilisable et visible sous Chrome 8, Firefox 4 et normalement IE9, pour les autres navigateurs récents je ne sais pas. Et pour les navigateurs obsolètes, on peut leur faire afficher une image JPG générée par Inkscape à partir du SVG.

Code :
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
<!doctype html>
<html lang="fr">
<head>
	<meta http-equiv="X-UA-Compatible" content="chrome=1">
	<meta charset="utf-8">
	<meta name="Author" content="Daniel Hagnoul">
	<title>Forum jQuery</title>
	<link rel="stylesheet" type="text/css" href="../lib/jqueryui/css/humanity/jquery-ui-1.8.6.custom.css">	
	<style>
		body { background-color:#dcdcdc; color:#000000; font-family:sans-serif; font-size:medium; font-style:normal;
		font-weight:normal; line-height:normal; letter-spacing:normal; }
		h1,h2,h3,h4,h5 { font-family:serif; }
		div,p,h1,h2,h3,h4,h5,h6,ul,ol,dl,form,table,img { margin:0px; padding:0px; }
		h1 { font-size:2em; text-shadow: 4px 4px 4px #bbbbbb; text-align:center; }
		p { padding:6px; }
		div#conteneur { width:95%; min-width:800px; min-height:500px; margin:12px auto; background-color:#FFFFFF;
		color:#000000; border:1px solid #666666; }
 
		/* Test */
	</style>
</head>
<body>
	<h1>Forum jQuery</h1>
	<div id="conteneur">
<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://web.resource.org/cc/"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   width="800pt"
   height="600pt"
   id="svg2"
   sodipodi:version="0.32"
   inkscape:version="0.43"
   version="1.0"
   sodipodi:docbase="C:\Documents and Settings\Christopher Martin\Desktop"
   sodipodi:docname="efron_c_d.svg"> 
  <defs
     id="defs4" /> 
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="0.35"
     inkscape:cx="472.30368"
     inkscape:cy="362.63231"
     inkscape:document-units="px"
     inkscape:current-layer="layer1"
     inkscape:window-width="756"
     inkscape:window-height="540"
     inkscape:window-x="259"
     inkscape:window-y="178" /> 
  <metadata
     id="metadata7"> 
    <rdf:RDF> 
      <cc:Work
         rdf:about=""> 
        <dc:format>image/svg+xml</dc:format> 
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> 
      </cc:Work> 
    </rdf:RDF> 
  </metadata> 
  <g
     inkscape:label="Layer 1"
     inkscape:groupmode="layer"
     id="layer1"> 
    <rect
       style="opacity:0.33333333;fill:#7f7fff;fill-opacity:1"
       id="rect9587"
       width="977.85504"
       height="129.07687"
       x="12.054976"
       y="150.91763" /> 
    <g
       id="g4830"
       transform="matrix(1.368998,0,0,1.368998,72.29067,226.017)"> 
      <path
         transform="translate(-1.428571e-5,2.857157)"
         d="M 334.28573 175.71428 A 45.714287 45.714287 0 1 1  242.85715,175.71428 A 45.714287 45.714287 0 1 1  334.28573 175.71428 z"
         sodipodi:ry="45.714287"
         sodipodi:rx="45.714287"
         sodipodi:cy="175.71428"
         sodipodi:cx="288.57144"
         id="path4832"
         style="fill:#e3adff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         sodipodi:type="arc" /> 
      <text
         id="text4834"
         y="197.48593"
         x="271.51172"
         style="font-size:51.72842026px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
         xml:space="preserve"><tspan
           y="197.48593"
           x="271.51172"
           id="tspan4836"
           sodipodi:role="line">1</tspan></text> 
    </g> 
    <g
       id="g2190"
       transform="matrix(1.368998,0,0,1.368998,-19.23641,-28.22544)"> 
      <path
         transform="translate(-1.428571e-5,2.857157)"
         d="M 334.28573 175.71428 A 45.714287 45.714287 0 1 1  242.85715,175.71428 A 45.714287 45.714287 0 1 1  334.28573 175.71428 z"
         sodipodi:ry="45.714287"
         sodipodi:rx="45.714287"
         sodipodi:cy="175.71428"
         sodipodi:cx="288.57144"
         id="path1307"
         style="fill:#a3a3fe;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         sodipodi:type="arc" /> 
      <text
         id="text1309"
         y="197.48593"
         x="271.51172"
         style="font-size:51.72842026px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
         xml:space="preserve"><tspan
           y="197.48593"
           x="271.51172"
           id="tspan1311"
           sodipodi:role="line">6</tspan></text> 
    </g> 
    <g
       id="g2195"
       transform="matrix(1.368998,0,0,1.368998,369.5586,-27.05193)"> 
      <path
         transform="translate(-1.428571e-5,2.857157)"
         d="M 334.28573 175.71428 A 45.714287 45.714287 0 1 1  242.85715,175.71428 A 45.714287 45.714287 0 1 1  334.28573 175.71428 z"
         sodipodi:ry="45.714287"
         sodipodi:rx="45.714287"
         sodipodi:cy="175.71428"
         sodipodi:cx="288.57144"
         id="path2197"
         style="fill:#c7c7ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         sodipodi:type="arc" /> 
      <text
         id="text2199"
         y="197.48593"
         x="271.51172"
         style="font-size:51.72842026px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
         xml:space="preserve"><tspan
           y="197.48593"
           x="271.51172"
           id="tspan2201"
           sodipodi:role="line">2</tspan></text> 
    </g> 
    <g
       id="g3076"
       transform="matrix(1.368998,0,0,1.368998,-112.7193,226.017)"> 
      <path
         transform="translate(-1.428571e-5,2.857157)"
         d="M 334.28573 175.71428 A 45.714287 45.714287 0 1 1  242.85715,175.71428 A 45.714287 45.714287 0 1 1  334.28573 175.71428 z"
         sodipodi:ry="45.714287"
         sodipodi:rx="45.714287"
         sodipodi:cy="175.71428"
         sodipodi:cx="288.57144"
         id="path3078"
         style="fill:#d179ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         sodipodi:type="arc" /> 
      <text
         id="text3080"
         y="197.48593"
         x="271.51172"
         style="font-size:51.72842026px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
         xml:space="preserve"><tspan
           y="197.48593"
           x="271.51172"
           id="tspan3082"
           sodipodi:role="line">5</tspan></text> 
    </g> 
    <g
       id="g5727"
       transform="matrix(1.368998,0,0,1.368998,462.0638,224.8436)"> 
      <path
         transform="translate(-1.428571e-5,2.857157)"
         d="M 334.28573 175.71428 A 45.714287 45.714287 0 1 1  242.85715,175.71428 A 45.714287 45.714287 0 1 1  334.28573 175.71428 z"
         sodipodi:ry="45.714287"
         sodipodi:rx="45.714287"
         sodipodi:cy="175.71428"
         sodipodi:cx="288.57144"
         id="path5729"
         style="fill:#e3adff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         sodipodi:type="arc" /> 
      <text
         id="text5731"
         y="197.48593"
         x="271.51172"
         style="font-size:51.72842026px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
         xml:space="preserve"><tspan
           y="197.48593"
           x="271.51172"
           id="tspan5733"
           sodipodi:role="line">1</tspan></text> 
    </g> 
    <g
       id="g5735"
       transform="matrix(1.368998,0,0,1.368998,277.0537,224.8436)"> 
      <path
         transform="translate(-1.428571e-5,2.857157)"
         d="M 334.28573 175.71428 A 45.714287 45.714287 0 1 1  242.85715,175.71428 A 45.714287 45.714287 0 1 1  334.28573 175.71428 z"
         sodipodi:ry="45.714287"
         sodipodi:rx="45.714287"
         sodipodi:cy="175.71428"
         sodipodi:cx="288.57144"
         id="path5737"
         style="fill:#d179ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         sodipodi:type="arc" /> 
      <text
         id="text5739"
         y="197.48593"
         x="271.51172"
         style="font-size:51.72842026px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
         xml:space="preserve"><tspan
           y="197.48593"
           x="271.51172"
           id="tspan5741"
           sodipodi:role="line">5</tspan></text> 
    </g> 
    <path
       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.3689971px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       d="M 340.61427,274.90967 C 281.94299,407.89796 281.94299,407.89796 281.94299,407.89796"
       id="path5743" /> 
    <path
       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.3689971px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       d="M 403.19701,274.90967 C 465.77973,403.98653 465.77973,403.98653 465.77973,403.98653"
       id="path5745" /> 
    <path
       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.3689971px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       d="M 727.45374,270.99826 C 668.78244,403.98653 668.78244,403.98653 668.78244,403.98653"
       id="path5747" /> 
    <path
       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.3689971px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       d="M 797.85931,270.99826 C 856.53061,403.98653 856.53061,403.98653 856.53061,403.98653"
       id="path5749" /> 
    <text
       xml:space="preserve"
       style="font-size:60.472435px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       x="367.06683"
       y="82.814995"
       id="text5751"><tspan
         sodipodi:role="line"
         id="tspan5753"
         x="367.06683"
         y="82.814995">1/3</tspan></text> 
    <text
       xml:space="preserve"
       style="font-size:60.472435px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       x="684.49677"
       y="82.814995"
       id="text5755"><tspan
         sodipodi:role="line"
         id="tspan5757"
         x="684.49677"
         y="82.814995">2/3</tspan></text> 
    <text
       xml:space="preserve"
       style="font-size:60.472435px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       x="207.19667"
       y="349.30536"
       id="text5759"><tspan
         sodipodi:role="line"
         id="tspan5761"
         x="207.19667"
         y="349.30536">1/2</tspan></text> 
    <text
       xml:space="preserve"
       style="font-size:60.472435px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       x="592.29425"
       y="349.30536"
       id="text5763"><tspan
         sodipodi:role="line"
         id="tspan5765"
         x="592.29425"
         y="349.30536">1/2</tspan></text> 
    <text
       xml:space="preserve"
       style="font-size:60.472435px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       x="442.27307"
       y="349.30533"
       id="text5767"><tspan
         sodipodi:role="line"
         id="tspan5769"
         x="442.27307"
         y="349.30533">1/2</tspan></text> 
    <text
       xml:space="preserve"
       style="font-size:60.472435px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       x="832.84662"
       y="349.30533"
       id="text5771"><tspan
         sodipodi:role="line"
         id="tspan5773"
         x="832.84662"
         y="349.30533">1/2</tspan></text> 
    <path
       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.3689971px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       d="M 371.90564,149.74422 C 575.29949,16.755926 575.29949,16.755926 575.29949,16.755926 C 763.04766,153.65564 763.04766,153.65564 763.04766,153.65564"
       id="path5775" /> 
    <text
       xml:space="preserve"
       style="font-size:60.472435px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       x="229.59868"
       y="685.32623"
       id="text5781"><tspan
         sodipodi:role="line"
         id="tspan5783"
         x="229.59868"
         y="685.32623">1/6</tspan></text> 
    <text
       xml:space="preserve"
       style="font-size:60.472435px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       x="414.70474"
       y="685.32623"
       id="text5785"><tspan
         sodipodi:role="line"
         id="tspan5787"
         x="414.70474"
         y="685.32623">1/6</tspan></text> 
    <text
       xml:space="preserve"
       style="font-size:60.472435px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       x="620.44543"
       y="685.32623"
       id="text5789"><tspan
         sodipodi:role="line"
         id="tspan5791"
         x="620.44543"
         y="685.32623">2/6</tspan></text> 
    <text
       xml:space="preserve"
       style="font-size:60.472435px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       x="805.84674"
       y="685.32623"
       id="text5793"><tspan
         sodipodi:role="line"
         id="tspan5795"
         x="805.84674"
         y="685.32623">2/6</tspan></text> 
    <text
       xml:space="preserve"
       style="font-size:102.92103577px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       x="45.530106"
       y="253.05249"
       id="text5797"><tspan
         sodipodi:role="line"
         id="tspan5799"
         x="45.530106"
         y="253.05249"
         style="fill:#3f3f7f;fill-opacity:1">C</tspan></text> 
    <text
       xml:space="preserve"
       style="font-size:102.92103577px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       x="47.210403"
       y="506.77191"
       id="text8694"><tspan
         sodipodi:role="line"
         id="tspan8696"
         x="47.210403"
         y="506.77191"
         style="fill:#61267f;fill-opacity:1">D</tspan></text> 
    <text
       xml:space="preserve"
       style="font-size:73.64253998px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       x="250.58945"
       y="617.01147"
       id="text9571"><tspan
         sodipodi:role="line"
         id="tspan9573"
         x="250.58945"
         y="617.01147"
         style="fill:#3f3f7f;fill-opacity:1">C</tspan></text> 
    <text
       xml:space="preserve"
       style="font-size:73.64253998px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       x="824.79968"
       y="617.01147"
       id="text9575"><tspan
         sodipodi:role="line"
         id="tspan9577"
         x="824.79968"
         y="617.01147"
         style="fill:#3f3f7f;fill-opacity:1">C</tspan></text> 
    <text
       xml:space="preserve"
       style="font-size:73.64253998px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       x="435.73306"
       y="617.01154"
       id="text9579"><tspan
         sodipodi:role="line"
         id="tspan9581"
         x="435.73306"
         y="617.01154"
         style="fill:#3f3f7f;fill-opacity:1">C</tspan></text> 
    <text
       xml:space="preserve"
       style="font-size:73.64253998px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       x="637.6532"
       y="614.24872"
       id="text9583"><tspan
         sodipodi:role="line"
         id="tspan9585"
         x="637.6532"
         y="614.24872"
         style="fill:#61267f;fill-opacity:1">D</tspan></text> 
    <rect
       style="opacity:0.33333333;fill:#c34dff;fill-opacity:1"
       id="rect11335"
       width="977.85504"
       height="129.07687"
       x="10.490406"
       y="403.5954" /> 
  </g> 
</svg>
<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://web.resource.org/cc/"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   width="554.95001"
   height="294.60999"
   id="svg2"
   sodipodi:version="0.32"
   inkscape:version="0.45.1"
   version="1.0"
   sodipodi:docbase="/Users/Rick/Desktop"
   sodipodi:docname="Monty_tree.svg"
   inkscape:output_extension="org.inkscape.output.svg.inkscape"> 
  <defs
     id="defs4" /> 
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="1"
     inkscape:cx="276.93478"
     inkscape:cy="158.79879"
     inkscape:document-units="px"
     inkscape:current-layer="layer1"
     inkscape:window-width="756"
     inkscape:window-height="599"
     inkscape:window-x="123"
     inkscape:window-y="90"
     showgrid="true"
     width="554.95px"
     height="294.61px" /> 
  <metadata
     id="metadata7"> 
    <rdf:RDF> 
      <cc:Work
         rdf:about=""> 
        <dc:format>image/svg+xml</dc:format> 
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> 
      </cc:Work> 
    </rdf:RDF> 
  </metadata> 
  <g
     inkscape:label="Layer 1"
     inkscape:groupmode="layer"
     id="layer1"
     transform="translate(-4.1098108,-11.664063)"> 
    <text
       xml:space="preserve"
       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Verdana"
       x="112.711"
       y="123.36604"
       id="text1307"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         id="tspan1309"
         x="112.711"
         y="123.36604">Door 1</tspan></text> 
    <text
       xml:space="preserve"
       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#8e0000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Verdana"
       x="499.21924"
       y="101.1385"
       id="text1311"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         id="tspan1313"
         x="499.21924"
         y="101.1385">Goat</tspan></text> 
    <text
       xml:space="preserve"
       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Verdana"
       x="434.22119"
       y="101.12093"
       id="text1315"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         id="tspan1317"
         x="434.22119"
         y="101.12093">Car</tspan></text> 
    <text
       xml:space="preserve"
       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Verdana"
       x="112.72119"
       y="200.6385"
       id="text1319"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         x="112.72119"
         y="200.6385"
         id="tspan1323">Door 2</tspan></text> 
    <text
       xml:space="preserve"
       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#8e0000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Verdana"
       x="499.59277"
       y="143.62093"
       id="text1327"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         id="tspan1329"
         x="499.59277"
         y="143.62093">Goat</tspan></text> 
    <text
       xml:space="preserve"
       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#8e0000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Verdana"
       x="432.71582"
       y="200.62093"
       id="text1335"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         id="tspan1337"
         x="432.71582"
         y="200.62093">Goat</tspan></text> 
    <text
       xml:space="preserve"
       style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       x="143.99463"
       y="34"
       id="text1339"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         x="143.99463"
         y="34"
         id="tspan1343">Car</tspan><tspan
         sodipodi:role="line"
         x="143.99463"
         y="54"
         id="tspan2239">location:</tspan></text> 
    <text
       xml:space="preserve"
       style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       x="268.42432"
       y="33"
       id="text1345"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         x="268.42432"
         y="33"
         id="tspan1349">Host</tspan><tspan
         sodipodi:role="line"
         x="268.42432"
         y="53"
         id="tspan2248">opens:</tspan></text> 
    <path
       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.95382911px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       d="M 107.94213,265.79713 C 10.645028,195.66483 10.645028,195.66483 10.645028,195.66483 C 107.26047,117.00466 107.26047,117.00466 107.26047,117.00466"
       id="path1353" /> 
    <path
       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.32651949px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       d="M 107.76239,195.9169 C 10.824229,195.9169 10.824229,195.9169 10.824229,195.9169"
       id="path1355" /> 
    <text
       xml:space="preserve"
       style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Sans"
       x="36.054688"
       y="148.6385"
       id="text1357"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         id="tspan1359"
         x="36.054688"
         y="148.6385">1/3</tspan></text> 
    <text
       xml:space="preserve"
       style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Sans"
       x="50.096191"
       y="188.83382"
       id="text2234"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         id="tspan2236"
         x="50.096191"
         y="188.83382">1/3</tspan></text> 
    <text
       xml:space="preserve"
       style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Sans"
       x="37.096191"
       y="256.79474"
       id="text2238"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         id="tspan2240"
         x="37.096191"
         y="256.79474">1/3</tspan></text> 
    <path
       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       d="M 181.72119,195.1385 C 236.72119,195.1385 236.72119,195.1385 236.72119,195.1385"
       id="path2242" /> 
    <path
       id="path2244"
       d="M 235.72656,272.1385 C 180.72656,272.1385 180.72656,272.1385 180.72656,272.1385"
       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> 
    <g
       id="g2232"
       transform="matrix(1,0,0,0.6833333,-243.77344,71.196834)"> 
      <path
         id="path2256"
         d="M 424.99463,66 C 480.99463,96 480.99463,96 480.99463,96"
         style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> 
      <path
         id="path2258"
         d="M 424.99463,67 C 478.99463,37 478.99463,37 478.99463,37"
         style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> 
    </g> 
    <text
       xml:space="preserve"
       style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Sans"
       x="206.09619"
       y="188.83382"
       id="text2260"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         id="tspan2262"
         x="206.09619"
         y="188.83382">1</tspan></text> 
    <text
       sodipodi:linespacing="125%"
       id="text2264"
       y="263.8338"
       x="207.09619"
       style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Sans"
       xml:space="preserve"><tspan
         y="263.8338"
         x="207.09619"
         id="tspan2266"
         sodipodi:role="line">1</tspan></text> 
    <text
       xml:space="preserve"
       style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Sans"
       x="192.09619"
       y="96.794746"
       id="text2268"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         id="tspan2270"
         x="192.09619"
         y="96.794746">1/2</tspan></text> 
    <text
       sodipodi:linespacing="125%"
       id="text2272"
       y="147.83382"
       x="194.09619"
       style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Sans"
       xml:space="preserve"><tspan
         y="147.83382"
         x="194.09619"
         id="tspan2274"
         sodipodi:role="line">1/2</tspan></text> 
    <text
       xml:space="preserve"
       style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Sans"
       x="339.81299"
       y="199.33382"
       id="text3153"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         id="tspan3155"
         x="339.81299"
         y="199.33382">1/3</tspan></text> 
    <text
       xml:space="preserve"
       style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Sans"
       x="340.31104"
       y="278.3338"
       id="text3157"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         id="tspan3159"
         x="340.31104"
         y="278.3338">1/3</tspan></text> 
    <text
       xml:space="preserve"
       style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Sans"
       x="339.79736"
       y="99.333817"
       id="text3161"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         id="tspan3163"
         x="339.79736"
         y="99.333817">1/6</tspan></text> 
    <text
       xml:space="preserve"
       style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Sans"
       x="339.29736"
       y="143.33382"
       id="text3169"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         id="tspan3171"
         x="339.29736"
         y="143.33382">1/6</tspan></text> 
    <text
       sodipodi:linespacing="125%"
       id="text3177"
       y="45.507812"
       x="430.24219"
       style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       xml:space="preserve"><tspan
         id="tspan3181"
         y="45.507812"
         x="430.24219"
         sodipodi:role="line">Stay:</tspan></text> 
    <text
       xml:space="preserve"
       style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       x="492.42432"
       y="46.166504"
       id="text3185"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         x="492.42432"
         y="46.166504"
         id="tspan3187">Switch:</tspan></text> 
    <text
       sodipodi:linespacing="125%"
       id="text3197"
       y="201.39876"
       x="502.9707"
       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Verdana"
       xml:space="preserve"><tspan
         y="201.39876"
         x="502.9707"
         id="tspan3199"
         sodipodi:role="line">Car</tspan></text> 
    <text
       xml:space="preserve"
       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Verdana"
       x="434.4707"
       y="144.36604"
       id="text3201"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         id="tspan3203"
         x="434.4707"
         y="144.36604">Car</tspan></text> 
    <text
       xml:space="preserve"
       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Verdana"
       x="501.34766"
       y="279.36603"
       id="text3209"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         id="tspan3211"
         x="501.34766"
         y="279.36603">Car</tspan></text> 
    <text
       xml:space="preserve"
       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#8e0000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Verdana"
       x="431.21582"
       y="279.38361"
       id="text3217"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         id="tspan3219"
         x="431.21582"
         y="279.38361">Goat</tspan></text> 
    <path
       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.69490689px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.59876541"
       d="M 423.22119,61.346196 C 423.22119,298.9308 423.22119,298.9308 423.22119,298.9308"
       id="path4967" /> 
    <text
       xml:space="preserve"
       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Verdana"
       x="112.711"
       y="277.76935"
       id="text2228"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         id="tspan2230"
         x="112.711"
         y="277.76935">Door 3</tspan></text> 
    <text
       xml:space="preserve"
       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Verdana"
       x="242.3374"
       y="101.18196"
       id="text2245"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         x="242.3374"
         y="101.18196"
         id="tspan2247">Door 2</tspan></text> 
    <text
       xml:space="preserve"
       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Verdana"
       x="242.42969"
       y="144.36604"
       id="text2249"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         id="tspan2251"
         x="242.42969"
         y="144.36604">Door 3</tspan></text> 
    <text
       xml:space="preserve"
       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Verdana"
       x="243.42969"
       y="201.18196"
       id="text2253"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         id="tspan2255"
         x="243.42969"
         y="201.18196">Door 3</tspan></text> 
    <text
       xml:space="preserve"
       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Verdana"
       x="242.3374"
       y="279.18195"
       id="text2257"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         x="242.3374"
         y="279.18195"
         id="tspan2259">Door 2</tspan></text> 
    <path
       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.69542509px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.59876541"
       d="M 487.82942,60.347713 C 487.82942,298.28682 487.82942,298.28682 487.82942,298.28682"
       id="path2261" /> 
    <text
       xml:space="preserve"
       style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       x="357.47266"
       y="33.207031"
       id="text2250"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         x="357.47266"
         y="33.207031"
         id="tspan2252">Total</tspan><tspan
         sodipodi:role="line"
         x="357.47266"
         y="53.207031"
         id="tspan2254">probability:</tspan></text> 
  </g> 
</svg> 
	</div>
	<script charset="utf-8" src="http://code.jquery.com/jquery-1.4.4.min.js"></script>
	<script charset="utf-8" src="../lib/jqueryui/js/jquery-ui-1.8.6.custom.min.js"></script>
	<script>
		$(function(){
		});
	</script>
</body>  
</html>
__________________

FAQ jQuery

Mon cahier d’exercices sur jQuery & Co

Si un message vous a aidé ou vous semble pertinent, votez pour lui !
danielhagnoul est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 07/12/2010, 22h59   #5
Membre Expert
 
Inscription : décembre 2006
Messages : 2 048
Détails du profil
Informations forums :
Inscription : décembre 2006
Messages : 2 048
Points : 1 087
Points : 1 087
Effectivement, c'est ce qu'utilise jQuery SVG.

J'ai très peu de temps libre en ce moment et du coup je n'ai pas pu tester la possibilité de mettre du texte accessible de puis JS. Plus précisément, j'aimerais mettre des fractions via MathJax dans le dessin SVG.

Va falloir que j'attende d'avoir du temps libre pour tester cela. Si cela fonctionne alors je pourrais envisager un outil pour les arbres de proba (on y revient...).
rambc est déconnecté   Envoyer un message privé Réponse avec citation 00
Réponse Proposer ce sujet en actualité Cette discussion est résolue.
Outils de la discussion



Fuseau horaire GMT +2. Il est actuellement 13h29.


 
 
 
 
Partenaires

Hébergement Web