forked from fr830/PrimSCADA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
OxyPlot.xml
21298 lines (21298 loc) · 795 KB
/
OxyPlot.xml
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
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>OxyPlot</name>
</assembly>
<members>
<member name="T:OxyPlot.LibraryDoc">
<summary>
The OxyPlot solution provides plotting functionality for Windows store apps, WPF, Windows forms, Silverlight and Mono based applications.
</summary>
</member>
<member name="T:OxyPlot.NamespaceDoc">
<summary>
The OxyPlot namespace contains the platform independent classes of the library.
</summary>
</member>
<member name="T:OxyPlot.PlotLength">
<summary>
Represents lengths in the plot.
</summary>
</member>
<member name="F:OxyPlot.PlotLength.unit">
<summary>
The unit type
</summary>
</member>
<member name="F:OxyPlot.PlotLength.value">
<summary>
The value
</summary>
</member>
<member name="M:OxyPlot.PlotLength.#ctor(System.Double,OxyPlot.PlotLengthUnit)">
<summary>
Initializes a new instance of the <see cref="T:OxyPlot.PlotLength"/> struct.
</summary>
<param name="value">
The value.
</param>
<param name="unit">
The unit.
</param>
</member>
<member name="P:OxyPlot.PlotLength.Value">
<summary>
Gets the value.
</summary>
<value>
The value.
</value>
</member>
<member name="P:OxyPlot.PlotLength.Unit">
<summary>
Gets the type of the unit.
</summary>
<value>
The type of the unit.
</value>
</member>
<member name="T:OxyPlot.PlotLengthUnit">
<summary>
Describes the kind of value that a <see cref="T:OxyPlot.PlotLength"/> object is holding.
</summary>
</member>
<member name="F:OxyPlot.PlotLengthUnit.Data">
<summary>
The value is in data space (transformed by x/y axis)
</summary>
</member>
<member name="F:OxyPlot.PlotLengthUnit.ScreenUnits">
<summary>
The value is in screen units
</summary>
</member>
<member name="F:OxyPlot.PlotLengthUnit.RelativeToViewport">
<summary>
The value is relative to the plot viewport (0-1)
</summary>
</member>
<member name="F:OxyPlot.PlotLengthUnit.RelativeToPlotArea">
<summary>
The value is relative to the plot area (0-1)
</summary>
</member>
<member name="T:OxyPlot.CodeGenerationAttribute">
<summary>
Specifies whether code should be generated for the property.
</summary>
</member>
<member name="M:OxyPlot.CodeGenerationAttribute.#ctor(System.Boolean)">
<summary>
Initializes a new instance of the <see cref="T:OxyPlot.CodeGenerationAttribute"/> class.
</summary>
<param name="generateCode">
The generate code.
</param>
</member>
<member name="P:OxyPlot.CodeGenerationAttribute.GenerateCode">
<summary>
Gets or sets a value indicating whether GenerateCode.
</summary>
</member>
<member name="T:OxyPlot.CodeGenerator">
<summary>
Provides functionality to generate C# code for the specified <see cref="T:OxyPlot.PlotModel"/>.
</summary>
<remarks>
This is useful for creating examples or unit tests. Press Ctrl+Alt+C in a plot to copy code to the clipboard.
Usage:
var cg = new CodeGenerator(myPlotModel);
Clipboard.SetText(cg.ToCode());
</remarks>
</member>
<member name="F:OxyPlot.CodeGenerator.sb">
<summary>
The string builder.
</summary>
</member>
<member name="F:OxyPlot.CodeGenerator.variables">
<summary>
The variables.
</summary>
</member>
<member name="F:OxyPlot.CodeGenerator.indentString">
<summary>
The indent string.
</summary>
</member>
<member name="F:OxyPlot.CodeGenerator.indents">
<summary>
The current number of indents.
</summary>
</member>
<member name="M:OxyPlot.CodeGenerator.#ctor(OxyPlot.PlotModel)">
<summary>
Initializes a new instance of the <see cref="T:OxyPlot.CodeGenerator"/> class.
</summary>
<param name="model">
The model.
</param>
</member>
<member name="M:OxyPlot.CodeGenerator.FormatCode(System.String,System.Object[])">
<summary>
Formats the code.
</summary>
<param name="format">
The format.
</param>
<param name="values">
The values.
</param>
<returns>
The format code.
</returns>
</member>
<member name="M:OxyPlot.CodeGenerator.FormatConstructor(System.Type,System.String,System.Object[])">
<summary>
Formats a constructor.
</summary>
<param name="type">
The type.
</param>
<param name="format">
The format of the constructor arguments.
</param>
<param name="values">
The argument values.
</param>
<returns>
The format constructor.
</returns>
</member>
<member name="M:OxyPlot.CodeGenerator.ToCode">
<summary>
Returns the c# code for this model.
</summary>
<returns>
C# code.
</returns>
</member>
<member name="M:OxyPlot.CodeGenerator.Add(System.Object)">
<summary>
Adds the specified object to the generated code.
</summary>
<param name="obj">
The object.
</param>
<returns>
The variable name.
</returns>
</member>
<member name="M:OxyPlot.CodeGenerator.AddChildren(System.String,System.String,System.Collections.IEnumerable)">
<summary>
Adds the children.
</summary>
<param name="name">
The name.
</param>
<param name="collectionName">
Name of the collection.
</param>
<param name="children">
The children.
</param>
</member>
<member name="M:OxyPlot.CodeGenerator.AddItems(System.String,System.Collections.IList)">
<summary>
Adds the items.
</summary>
<param name="name">
The name.
</param>
<param name="list">
The list.
</param>
</member>
<member name="M:OxyPlot.CodeGenerator.AddArray(System.String,System.Array)">
<summary>
Creates and sets the elements of an array.
</summary>
<param name="name">The name.</param>
<param name="array">The array.</param>
</member>
<member name="M:OxyPlot.CodeGenerator.AppendLine(System.String,System.Object[])">
<summary>
Appends the line.
</summary>
<param name="format">
The format string.
</param>
<param name="args">
The args.
</param>
</member>
<member name="M:OxyPlot.CodeGenerator.AreListsEqual(System.Collections.IList,System.Collections.IList)">
<summary>
Determines if the two specifed lists are equal.
</summary>
<param name="list1">
The first list.
</param>
<param name="list2">
The second list.
</param>
<returns>
True if all items are equal.
</returns>
</member>
<member name="M:OxyPlot.CodeGenerator.GetFirstAttribute``1(System.Reflection.PropertyInfo)">
<summary>
Get the first attribute of the specified type.
</summary>
<param name="pi">
The property info.
</param>
<typeparam name="T">
The type.
</typeparam>
<returns>
The attribute, or null if no attribute was found.
</returns>
</member>
<member name="M:OxyPlot.CodeGenerator.GetNewVariableName(System.Type)">
<summary>
Gets a new variable name of the specified type.
</summary>
<param name="type">
The type.
</param>
<returns>
The variable name.
</returns>
</member>
<member name="M:OxyPlot.CodeGenerator.MakeValidVariableName(System.String)">
<summary>
Makes a valid variable name of a string. Invalid characters will simply be removed.
</summary>
<param name="title">
The title.
</param>
<returns>
A valid variable name.
</returns>
</member>
<member name="M:OxyPlot.CodeGenerator.SetProperties(System.Object,System.String,System.Object)">
<summary>
The set properties.
</summary>
<param name="instance">
The instance.
</param>
<param name="varName">
The var name.
</param>
<param name="defaultValues">
The default values.
</param>
</member>
<member name="M:OxyPlot.CodeGenerator.SetProperty(System.String,System.Object)">
<summary>
Sets the property.
</summary>
<param name="name">
The property name.
</param>
<param name="value">
The value.
</param>
</member>
<member name="P:OxyPlot.CodeGenerator.Indents">
<summary>
Gets or sets the number of indents.
</summary>
</member>
<member name="T:OxyPlot.CodeGeneratorStringExtensions">
<summary>
Provides extension methods for code generation.
</summary>
</member>
<member name="M:OxyPlot.CodeGeneratorStringExtensions.ToCode(System.String)">
<summary>
Converts the value of this instance to c# code.
</summary>
<param name="value">
The instance.
</param>
<returns>
C# code.
</returns>
</member>
<member name="M:OxyPlot.CodeGeneratorStringExtensions.ToCode(System.Boolean)">
<summary>
Converts the value of this instance to c# code.
</summary>
<param name="value">
The value.
</param>
<returns>
C# code.
</returns>
</member>
<member name="M:OxyPlot.CodeGeneratorStringExtensions.ToCode(System.Int32)">
<summary>
Converts the value of this instance to c# code.
</summary>
<param name="value">
The instance.
</param>
<returns>
C# code.
</returns>
</member>
<member name="M:OxyPlot.CodeGeneratorStringExtensions.ToCode(System.Enum)">
<summary>
Converts the value of this instance to c# code.
</summary>
<param name="value">
The instance.
</param>
<returns>
C# code.
</returns>
</member>
<member name="M:OxyPlot.CodeGeneratorStringExtensions.ToCode(System.Double)">
<summary>
Converts the value of this instance to c# code.
</summary>
<param name="value">
The instance.
</param>
<returns>
C# code.
</returns>
</member>
<member name="M:OxyPlot.CodeGeneratorStringExtensions.ToCode(System.Object)">
<summary>
Converts the value of this instance to c# code.
</summary>
<param name="value">
The instance.
</param>
<returns>
C# code.
</returns>
</member>
<member name="T:OxyPlot.ICodeGenerating">
<summary>
Provides functionality to generate C# code of an object.
</summary>
</member>
<member name="M:OxyPlot.ICodeGenerating.ToCode">
<summary>
Returns c# code that generates this instance.
</summary>
<returns>
C# code.
</returns>
</member>
<member name="T:OxyPlot.IDataPoint">
<summary>
Defines a point.
</summary>
</member>
<member name="P:OxyPlot.IDataPoint.X">
<summary>
Gets or sets the x-coordinate.
</summary>
<value>The x-coordinate.</value>
</member>
<member name="P:OxyPlot.IDataPoint.Y">
<summary>
Gets or sets the y-coordinate.
</summary>
<value>The y-coordinate.</value>
</member>
<member name="T:OxyPlot.DataPointExtensions">
<summary>
Provides extension methods for <see cref="T:OxyPlot.IDataPoint"/>.
</summary>
</member>
<member name="M:OxyPlot.DataPointExtensions.IsValid(OxyPlot.IDataPoint)">
<summary>
Returns whether the coordinate contains a NaN value.
</summary>
<param name="p">The point to evaluate.</param>
<returns><value>true</value> if neither the X nor Y coordinates are NaN values; otherwise, <value>false</value>.</returns>
</member>
<member name="T:OxyPlot.IDataPointProvider">
<summary>
Provides functionality to create data points.
</summary>
</member>
<member name="M:OxyPlot.IDataPointProvider.GetDataPoint">
<summary>
Gets the data point.
</summary>
<returns>
The data point.
</returns>
</member>
<member name="T:OxyPlot.DataPoint">
<summary>
Represents a point in the data coordinate system.
</summary>
<remarks>
<see cref="T:OxyPlot.DataPoint"/>s are transformed to <see cref="T:OxyPlot.ScreenPoint"/>s.
</remarks>
</member>
<member name="F:OxyPlot.DataPoint.Undefined">
<summary>
The undefined.
</summary>
</member>
<member name="F:OxyPlot.DataPoint.x">
<summary>
The x-coordinate.
</summary>
</member>
<member name="F:OxyPlot.DataPoint.y">
<summary>
The y-coordinate.
</summary>
</member>
<member name="M:OxyPlot.DataPoint.#ctor(System.Double,System.Double)">
<summary>
Initializes a new instance of the <see cref="T:OxyPlot.DataPoint"/> struct.
</summary>
<param name="x">
The x.
</param>
<param name="y">
The y.
</param>
</member>
<member name="M:OxyPlot.DataPoint.ToCode">
<summary>
Returns C# code that generates this instance.
</summary>
<returns>
The to code.
</returns>
</member>
<member name="M:OxyPlot.DataPoint.ToString">
<summary>
Returns a <see cref="T:System.String"/> that represents this instance.
</summary>
<returns>
A <see cref="T:System.String"/> that represents this instance.
</returns>
</member>
<member name="P:OxyPlot.DataPoint.X">
<summary>
Gets or sets the X.
</summary>
<value>
The X.
</value>
</member>
<member name="P:OxyPlot.DataPoint.Y">
<summary>
Gets or sets the Y.
</summary>
<value>
The Y.
</value>
</member>
<member name="T:OxyPlot.MarkerType">
<summary>
Specifies the marker type.
</summary>
</member>
<member name="F:OxyPlot.MarkerType.None">
<summary>
Do not render markers.
</summary>
</member>
<member name="F:OxyPlot.MarkerType.Circle">
<summary>
Render markers as circles.
</summary>
</member>
<member name="F:OxyPlot.MarkerType.Square">
<summary>
Render markers as squares.
</summary>
</member>
<member name="F:OxyPlot.MarkerType.Diamond">
<summary>
Render markers as diamonds.
</summary>
</member>
<member name="F:OxyPlot.MarkerType.Triangle">
<summary>
Render markers as triangles.
</summary>
</member>
<member name="F:OxyPlot.MarkerType.Cross">
<summary>
Render markers as crosses (note: this marker type requires the stroke color to be set).
</summary>
<remarks>
This marker type requires the stroke color to be set.
</remarks>
</member>
<member name="F:OxyPlot.MarkerType.Plus">
<summary>
Renders markers as plus signs (note: this marker type requires the stroke color to be set).
</summary>
<remarks>
This marker type requires the stroke color to be set.
</remarks>
</member>
<member name="F:OxyPlot.MarkerType.Star">
<summary>
Renders markers as stars (note: this marker type requires the stroke color to be set).
</summary>
<remarks>
This marker type requires the stroke color to be set.
</remarks>
</member>
<member name="F:OxyPlot.MarkerType.Custom">
<summary>
Render markers by a custom shape (defined by outline).
</summary>
</member>
<member name="T:OxyPlot.OxyPalette">
<summary>
Represents a palette of colors.
</summary>
</member>
<member name="M:OxyPlot.OxyPalette.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OxyPlot.OxyPalette"/> class.
</summary>
</member>
<member name="M:OxyPlot.OxyPalette.#ctor(OxyPlot.OxyColor[])">
<summary>
Initializes a new instance of the <see cref="T:OxyPlot.OxyPalette"/> class.
</summary>
<param name="colors">
The colors.
</param>
</member>
<member name="M:OxyPlot.OxyPalette.#ctor(System.Collections.Generic.IEnumerable{OxyPlot.OxyColor})">
<summary>
Initializes a new instance of the <see cref="T:OxyPlot.OxyPalette"/> class.
</summary>
<param name="colors">
The colors.
</param>
</member>
<member name="M:OxyPlot.OxyPalette.Interpolate(System.Int32,OxyPlot.OxyColor[])">
<summary>
Interpolates the specified colors to a palette of the specified size.
</summary>
<param name="paletteSize">
The size of the palette.
</param>
<param name="colors">
The colors.
</param>
<returns>
A palette.
</returns>
</member>
<member name="M:OxyPlot.OxyPalette.Reverse">
<summary>
Creates a palette with reversed color order.
</summary>
<returns>The reversed <see cref="T:OxyPlot.OxyPalette"/>.</returns>
</member>
<member name="P:OxyPlot.OxyPalette.Colors">
<summary>
Gets or sets the colors.
</summary>
<value> The colors. </value>
</member>
<member name="T:OxyPlot.OxyPalettes">
<summary>
Provides predefined palettes.
</summary>
</member>
<member name="M:OxyPlot.OxyPalettes.#cctor">
<summary>
Initializes static members of the <see cref="T:OxyPlot.OxyPalettes"/> class.
</summary>
</member>
<member name="M:OxyPlot.OxyPalettes.BlackWhiteRed(System.Int32)">
<summary>
Creates a black/white/red palette with the specified number of colors.
</summary>
<param name="numberOfColors">
The number of colors to create for the palette.
</param>
<returns>
A palette.
</returns>
</member>
<member name="M:OxyPlot.OxyPalettes.BlueWhiteRed(System.Int32)">
<summary>
Creates a blue/white/red palette with the specified number of colors.
</summary>
<param name="numberOfColors">
The number of colors to create for the palette.
</param>
<returns>
A palette.
</returns>
</member>
<member name="M:OxyPlot.OxyPalettes.Cool(System.Int32)">
<summary>
Creates a 'cool' palette with the specified number of colors.
</summary>
<param name="numberOfColors">
The number of colors to create for the palette.
</param>
<returns>
A palette.
</returns>
</member>
<member name="M:OxyPlot.OxyPalettes.Gray(System.Int32)">
<summary>
Creates a gray-scale palette with the specified number of colors.
</summary>
<param name="numberOfColors">
The number of colors to create for the palette.
</param>
<returns>
A palette.
</returns>
</member>
<member name="M:OxyPlot.OxyPalettes.Hot(System.Int32)">
<summary>
Creates a 'hot' palette with the specified number of colors.
</summary>
<param name="numberOfColors">
The number of colors to create for the palette.
</param>
<returns>
A palette.
</returns>
</member>
<member name="M:OxyPlot.OxyPalettes.Hue(System.Int32)">
<summary>
Creates a palette from the hue component of the HSV color model.
</summary>
<param name="numberOfColors">
The number of colors.
</param>
<returns>
The palette.
</returns>
<remarks>
This palette is particularly appropriate for displaying periodic functions.
</remarks>
</member>
<member name="M:OxyPlot.OxyPalettes.HueDistinct(System.Int32)">
<summary>
Creates a hue-based palette from magenta to red.
</summary>
<param name="numberOfColors">
The number of colors.
</param>
<returns>
The palette.
</returns>
<remarks>
This palette contains only distinct colors and with the cool colors (blues) first.
</remarks>
</member>
<member name="M:OxyPlot.OxyPalettes.Jet(System.Int32)">
<summary>
Creates a 'jet' palette with the specified number of colors.
</summary>
<param name="numberOfColors">
The number of colors to create for the palette.
</param>
<returns>
A palette.
</returns>
</member>
<member name="M:OxyPlot.OxyPalettes.Rainbow(System.Int32)">
<summary>
Creates a rainbow palette with the specified number of colors.
</summary>
<param name="numberOfColors">
The number of colors to create for the palette.
</param>
<returns>
A palette.
</returns>
</member>
<member name="P:OxyPlot.OxyPalettes.BlueWhiteRed31">
<summary>
Gets the blue-white-red palette with 31 colors.
</summary>
</member>
<member name="P:OxyPlot.OxyPalettes.Hot64">
<summary>
Gets the hot palette with 64 colors.
</summary>
</member>
<member name="P:OxyPlot.OxyPalettes.Hue64">
<summary>
Gets the hue palette with 64 colors.
</summary>
</member>
<member name="T:OxyPlot.ScreenVector">
<summary>
Represents a vector defined in the screen coordinate system.
</summary>
</member>
<member name="F:OxyPlot.ScreenVector.x">
<summary>
The x-coordinate.
</summary>
</member>
<member name="F:OxyPlot.ScreenVector.y">
<summary>
The y-coordinate.
</summary>
</member>
<member name="M:OxyPlot.ScreenVector.#ctor(System.Double,System.Double)">
<summary>
Initializes a new instance of the <see cref="T:OxyPlot.ScreenVector"/> structure.
</summary>
<param name="x">
The x-coordinate.
</param>
<param name="y">
The y-coordinate.
</param>
</member>
<member name="M:OxyPlot.ScreenVector.Normalize">
<summary>
Normalizes this vector.
</summary>
</member>
<member name="M:OxyPlot.ScreenVector.ToString">
<summary>
Returns a <see cref="T:System.String"/> that represents this instance.
</summary>
<returns>
A <see cref="T:System.String"/> that represents this instance.
</returns>
</member>
<member name="M:OxyPlot.ScreenVector.op_Multiply(OxyPlot.ScreenVector,System.Double)">
<summary>
Implements the operator *.
</summary>
<param name="v"> The vector. </param>
<param name="d"> The multiplication factor. </param>
<returns> The result of the operator. </returns>
</member>
<member name="P:OxyPlot.ScreenVector.Length">
<summary>
Gets the length.
</summary>
</member>
<member name="P:OxyPlot.ScreenVector.LengthSquared">
<summary>
Gets the length squared.
</summary>
</member>
<member name="P:OxyPlot.ScreenVector.X">
<summary>
Gets or sets the x-coordinate.
</summary>
<value> The x-coordinate. </value>
</member>
<member name="P:OxyPlot.ScreenVector.Y">
<summary>
Gets or sets the y-coordinate.
</summary>
<value> The y-coordinate. </value>
</member>
<member name="T:OxyPlot.ScreenPointHelper">
<summary>
Provides algorithms for polygons and lines of <see cref="T:OxyPlot.ScreenPoint"/>.
</summary>
</member>
<member name="M:OxyPlot.ScreenPointHelper.FindNearestPointOnPolyline(OxyPlot.ScreenPoint,System.Collections.Generic.IList{OxyPlot.ScreenPoint})">
<summary>
Finds the nearest point on the specified polyline.
</summary>
<param name="point">
The point.
</param>
<param name="points">
The points.
</param>
<returns>
The nearest point.
</returns>
</member>
<member name="M:OxyPlot.ScreenPointHelper.FindPointOnLine(OxyPlot.ScreenPoint,OxyPlot.ScreenPoint,OxyPlot.ScreenPoint)">
<summary>
Finds the point on line.
</summary>
<param name="p">
The point.
</param>
<param name="p1">
The first point on the line.
</param>
<param name="p2">
The second point on the line.
</param>
<returns>
The nearest point on the line.
</returns>
<remarks>
See <a href="http://paulbourke.net/geometry/pointlineplane/">Bourke</a>.
</remarks>
</member>
<member name="M:OxyPlot.ScreenPointHelper.FindPositionOnLine(OxyPlot.ScreenPoint,OxyPlot.ScreenPoint,OxyPlot.ScreenPoint)">
<summary>
Finds the nearest point on line.
</summary>
<param name="p">
The point.
</param>
<param name="p1">
The start point on the line.
</param>
<param name="p2">
The end point on the line.
</param>
<returns>
The relative position of the nearest point.
</returns>
<remarks>
See <a href="http://paulbourke.net/geometry/pointlineplane/">Bourke</a>.
</remarks>
</member>
<member name="M:OxyPlot.ScreenPointHelper.IsPointInPolygon(OxyPlot.ScreenPoint,System.Collections.Generic.IList{OxyPlot.ScreenPoint})">
<summary>
Determines whether the specified point is in the specified polygon.
</summary>
<param name="p">
The point.
</param>
<param name="pts">
The polygon points.
</param>
<returns>
<c>true</c> if the point is in the polygon; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:OxyPlot.ScreenPointHelper.ResamplePoints(System.Collections.Generic.IList{OxyPlot.ScreenPoint},System.Double)">
<summary>
Resamples the points with the specified point distance limit.
</summary>
<param name="allPoints">
All points.
</param>
<param name="minimumDistance">
The minimum squared distance.
</param>
<returns>
List of resampled points.
</returns>
</member>
<member name="M:OxyPlot.ScreenPointHelper.GetCentroid(System.Collections.Generic.IList{OxyPlot.ScreenPoint})">
<summary>
Gets the centroid of the specified polygon.
</summary>
<param name="points">
The points.
</param>
<returns>
The centroid.
</returns>
</member>
<member name="T:OxyPlot.CanonicalSplineHelper">
<summary>
Provides functionality to interpolate a list of points by a canonical spline.
</summary>
<remarks>
CanonicalSplineHelper.cs (c) 2009 by Charles Petzold (WPF and Silverlight)
www.charlespetzold.com/blog/2009/01/Canonical-Splines-in-WPF-and-Silverlight.html
</remarks>
</member>
<member name="M:OxyPlot.CanonicalSplineHelper.CreateSpline(System.Collections.Generic.IList{OxyPlot.IDataPoint},System.Double,System.Collections.Generic.IList{System.Double},System.Boolean,System.Double)">
<summary>
Creates a spline of data points.
</summary>
<param name="points">
The points.
</param>
<param name="tension">
The tension.
</param>
<param name="tensions">
The tensions.
</param>
<param name="isClosed">
True if the spline is closed.
</param>
<param name="tolerance">
The tolerance.
</param>
<returns>
A list of data points.
</returns>
</member>
<member name="M:OxyPlot.CanonicalSplineHelper.CreateSpline(System.Collections.Generic.IList{OxyPlot.ScreenPoint},System.Double,System.Collections.Generic.IList{System.Double},System.Boolean,System.Double)">
<summary>
Creates a spline of screen points.
</summary>
<param name="points">
The points.
</param>
<param name="tension">
The tension.
</param>
<param name="tensions">
The tensions.
</param>
<param name="isClosed">
True if the spline is closed.
</param>
<param name="tolerance">
The tolerance.
</param>
<returns>
A list of screen points.
</returns>
</member>
<member name="M:OxyPlot.CanonicalSplineHelper.Segment(System.Collections.Generic.IList{OxyPlot.ScreenPoint},OxyPlot.ScreenPoint,OxyPlot.ScreenPoint,OxyPlot.ScreenPoint,OxyPlot.ScreenPoint,System.Double,System.Double,System.Double)">
<summary>
The segment.
</summary>
<param name="points">
The points.
</param>
<param name="pt0">
The pt 0.
</param>
<param name="pt1">
The pt 1.
</param>
<param name="pt2">
The pt 2.
</param>
<param name="pt3">
The pt 3.
</param>
<param name="t1">
The t 1.
</param>
<param name="t2">
The t 2.
</param>
<param name="tolerance">
The tolerance.
</param>
</member>
<member name="T:OxyPlot.FontWeights">
<summary>
Provides a set of static predefined font weight values.