Skip to content
Snippets Groups Projects
SharpDX.Mathematics.xml 858 KiB
Newer Older
SCHAAL CESAR's avatar
SCHAAL CESAR committed
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>SharpDX.Mathematics</name>
    </assembly>
    <members>
        <member name="T:SharpDX.AngleSingle">
            <summary>
            Represents a unit independent angle using a single-precision floating-point
            internal representation.
            </summary>
        </member>
        <member name="F:SharpDX.AngleSingle.Degree">
            <summary>
            A value that specifies the size of a single degree.
            </summary>
        </member>
        <member name="F:SharpDX.AngleSingle.Minute">
            <summary>
            A value that specifies the size of a single minute.
            </summary>
        </member>
        <member name="F:SharpDX.AngleSingle.Second">
            <summary>
            A value that specifies the size of a single second.
            </summary>
        </member>
        <member name="F:SharpDX.AngleSingle.Radian">
            <summary>
            A value that specifies the size of a single radian.
            </summary>
        </member>
        <member name="F:SharpDX.AngleSingle.Milliradian">
            <summary>
            A value that specifies the size of a single milliradian.
            </summary>
        </member>
        <member name="F:SharpDX.AngleSingle.Gradian">
            <summary>
            A value that specifies the size of a single gradian.
            </summary>
        </member>
        <member name="F:SharpDX.AngleSingle.radians">
            <summary>
            The internal representation of the angle.
            </summary>
        </member>
        <member name="M:SharpDX.AngleSingle.#ctor(System.Single,SharpDX.AngleType)">
            <summary>
            Initializes a new instance of the SharpDX.AngleSingle structure with the
            given unit dependant angle and unit type.
            </summary>
            <param name="angle">A unit dependant measure of the angle.</param>
            <param name="type">The type of unit the angle argument is.</param>
        </member>
        <member name="M:SharpDX.AngleSingle.#ctor(System.Single,System.Single)">
            <summary>
            Initializes a new instance of the SharpDX.AngleSingle structure using the
            arc length formula (θ = s/r).
            </summary>
            <param name="arcLength">The measure of the arc.</param>
            <param name="radius">The radius of the circle.</param>
        </member>
        <member name="M:SharpDX.AngleSingle.Wrap">
            <summary>
            Wraps this SharpDX.AngleSingle to be in the range [π, -π].
            </summary>
        </member>
        <member name="M:SharpDX.AngleSingle.WrapPositive">
            <summary>
            Wraps this SharpDX.AngleSingle to be in the range [0, 2π).
            </summary>
        </member>
        <member name="P:SharpDX.AngleSingle.Revolutions">
            <summary>
            Gets or sets the total number of revolutions this SharpDX.AngleSingle represents.
            </summary>
        </member>
        <member name="P:SharpDX.AngleSingle.Degrees">
            <summary>
            Gets or sets the total number of degrees this SharpDX.AngleSingle represents.
            </summary>
        </member>
        <member name="P:SharpDX.AngleSingle.Minutes">
            <summary>
            Gets or sets the minutes component of the degrees this SharpDX.AngleSingle represents.
            When setting the minutes, if the value is in the range (-60, 60) the whole degrees are
            not changed; otherwise, the whole degrees may be changed. Fractional values may set
            the seconds component.
            </summary>
        </member>
        <member name="P:SharpDX.AngleSingle.Seconds">
            <summary>
            Gets or sets the seconds of the degrees this SharpDX.AngleSingle represents.
            When setting the seconds, if the value is in the range (-60, 60) the whole minutes
            or whole degrees are not changed; otherwise, the whole minutes or whole degrees
            may be changed.
            </summary>
        </member>
        <member name="P:SharpDX.AngleSingle.Radians">
            <summary>
            Gets or sets the total number of radians this SharpDX.AngleSingle represents.
            </summary>
        </member>
        <member name="P:SharpDX.AngleSingle.Milliradians">
            <summary>
            Gets or sets the total number of milliradians this SharpDX.AngleSingle represents.
            One milliradian is equal to 1/(2000π).
            </summary>
        </member>
        <member name="P:SharpDX.AngleSingle.Gradians">
            <summary>
            Gets or sets the total number of gradians this SharpDX.AngleSingle represents.
            </summary>
        </member>
        <member name="P:SharpDX.AngleSingle.IsRight">
            <summary>
            Gets a System.Boolean that determines whether this SharpDX.Angle
            is a right angle (i.e. 90° or π/2).
            </summary>
        </member>
        <member name="P:SharpDX.AngleSingle.IsStraight">
            <summary>
            Gets a System.Boolean that determines whether this SharpDX.Angle
            is a straight angle (i.e. 180° or π).
            </summary>
        </member>
        <member name="P:SharpDX.AngleSingle.IsFullRotation">
            <summary>
            Gets a System.Boolean that determines whether this SharpDX.Angle
            is a full rotation angle (i.e. 360° or 2π).
            </summary>
        </member>
        <member name="P:SharpDX.AngleSingle.IsOblique">
            <summary>
            Gets a System.Boolean that determines whether this SharpDX.Angle
            is an oblique angle (i.e. is not 90° or a multiple of 90°).
            </summary>
        </member>
        <member name="P:SharpDX.AngleSingle.IsAcute">
            <summary>
            Gets a System.Boolean that determines whether this SharpDX.Angle
            is an acute angle (i.e. less than 90° but greater than 0°).
            </summary>
        </member>
        <member name="P:SharpDX.AngleSingle.IsObtuse">
            <summary>
            Gets a System.Boolean that determines whether this SharpDX.Angle
            is an obtuse angle (i.e. greater than 90° but less than 180°).
            </summary>
        </member>
        <member name="P:SharpDX.AngleSingle.IsReflex">
            <summary>
            Gets a System.Boolean that determines whether this SharpDX.Angle
            is a reflex angle (i.e. greater than 180° but less than 360°).
            </summary>
        </member>
        <member name="P:SharpDX.AngleSingle.Complement">
            <summary>
            Gets a SharpDX.AngleSingle instance that complements this angle (i.e. the two angles add to 90°).
            </summary>
        </member>
        <member name="P:SharpDX.AngleSingle.Supplement">
            <summary>
            Gets a SharpDX.AngleSingle instance that supplements this angle (i.e. the two angles add to 180°).
            </summary>
        </member>
        <member name="M:SharpDX.AngleSingle.Wrap(SharpDX.AngleSingle)">
            <summary>
            Wraps the SharpDX.AngleSingle given in the value argument to be in the range [π, -π].
            </summary>
            <param name="value">A SharpDX.AngleSingle to wrap.</param>
            <returns>The SharpDX.AngleSingle that is wrapped.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.WrapPositive(SharpDX.AngleSingle)">
            <summary>
            Wraps the SharpDX.AngleSingle given in the value argument to be in the range [0, 2π).
            </summary>
            <param name="value">A SharpDX.AngleSingle to wrap.</param>
            <returns>The SharpDX.AngleSingle that is wrapped.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.Min(SharpDX.AngleSingle,SharpDX.AngleSingle)">
            <summary>
            Compares two SharpDX.AngleSingle instances and returns the smaller angle.
            </summary>
            <param name="left">The first SharpDX.AngleSingle instance to compare.</param>
            <param name="right">The second SharpDX.AngleSingle instance to compare.</param>
            <returns>The smaller of the two given SharpDX.AngleSingle instances.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.Max(SharpDX.AngleSingle,SharpDX.AngleSingle)">
            <summary>
            Compares two SharpDX.AngleSingle instances and returns the greater angle.
            </summary>
            <param name="left">The first SharpDX.AngleSingle instance to compare.</param>
            <param name="right">The second SharpDX.AngleSingle instance to compare.</param>
            <returns>The greater of the two given SharpDX.AngleSingle instances.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.Add(SharpDX.AngleSingle,SharpDX.AngleSingle)">
            <summary>
            Adds two SharpDX.AngleSingle objects and returns the result.
            </summary>
            <param name="left">The first object to add.</param>
            <param name="right">The second object to add.</param>
            <returns>The value of the two objects added together.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.Subtract(SharpDX.AngleSingle,SharpDX.AngleSingle)">
            <summary>
            Subtracts two SharpDX.AngleSingle objects and returns the result.
            </summary>
            <param name="left">The first object to subtract.</param>
            <param name="right">The second object to subtract.</param>
            <returns>The value of the two objects subtracted.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.Multiply(SharpDX.AngleSingle,SharpDX.AngleSingle)">
            <summary>
            Multiplies two SharpDX.AngleSingle objects and returns the result.
            </summary>
            <param name="left">The first object to multiply.</param>
            <param name="right">The second object to multiply.</param>
            <returns>The value of the two objects multiplied together.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.Divide(SharpDX.AngleSingle,SharpDX.AngleSingle)">
            <summary>
            Divides two SharpDX.AngleSingle objects and returns the result.
            </summary>
            <param name="left">The numerator object.</param>
            <param name="right">The denominator object.</param>
            <returns>The value of the two objects divided.</returns>
        </member>
        <member name="P:SharpDX.AngleSingle.ZeroAngle">
            <summary>
            Gets a new SharpDX.AngleSingle instance that represents the zero angle (i.e. 0°).
            </summary>
        </member>
        <member name="P:SharpDX.AngleSingle.RightAngle">
            <summary>
            Gets a new SharpDX.AngleSingle instance that represents the right angle (i.e. 90° or π/2).
            </summary>
        </member>
        <member name="P:SharpDX.AngleSingle.StraightAngle">
            <summary>
            Gets a new SharpDX.AngleSingle instance that represents the straight angle (i.e. 180° or π).
            </summary>
        </member>
        <member name="P:SharpDX.AngleSingle.FullRotationAngle">
            <summary>
            Gets a new SharpDX.AngleSingle instance that represents the full rotation angle (i.e. 360° or 2π).
            </summary>
        </member>
        <member name="M:SharpDX.AngleSingle.op_Equality(SharpDX.AngleSingle,SharpDX.AngleSingle)">
            <summary>
            Returns a System.Boolean that indicates whether the values of two SharpDX.Angle
            objects are equal.
            </summary>
            <param name="left">The first object to compare.</param>
            <param name="right">The second object to compare.</param>
            <returns>True if the left and right parameters have the same value; otherwise, false.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.op_Inequality(SharpDX.AngleSingle,SharpDX.AngleSingle)">
            <summary>
            Returns a System.Boolean that indicates whether the values of two SharpDX.Angle
            objects are not equal.
            </summary>
            <param name="left">The first object to compare.</param>
            <param name="right">The second object to compare.</param>
            <returns>True if the left and right parameters do not have the same value; otherwise, false.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.op_LessThan(SharpDX.AngleSingle,SharpDX.AngleSingle)">
            <summary>
            Returns a System.Boolean that indicates whether a SharpDX.Angle
            object is less than another SharpDX.AngleSingle object.
            </summary>
            <param name="left">The first object to compare.</param>
            <param name="right">The second object to compare.</param>
            <returns>True if left is less than right; otherwise, false.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.op_GreaterThan(SharpDX.AngleSingle,SharpDX.AngleSingle)">
            <summary>
            Returns a System.Boolean that indicates whether a SharpDX.Angle
            object is greater than another SharpDX.AngleSingle object.
            </summary>
            <param name="left">The first object to compare.</param>
            <param name="right">The second object to compare.</param>
            <returns>True if left is greater than right; otherwise, false.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.op_LessThanOrEqual(SharpDX.AngleSingle,SharpDX.AngleSingle)">
            <summary>
            Returns a System.Boolean that indicates whether a SharpDX.Angle
            object is less than or equal to another SharpDX.AngleSingle object.
            </summary>
            <param name="left">The first object to compare.</param>
            <param name="right">The second object to compare.</param>
            <returns>True if left is less than or equal to right; otherwise, false.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.op_GreaterThanOrEqual(SharpDX.AngleSingle,SharpDX.AngleSingle)">
            <summary>
            Returns a System.Boolean that indicates whether a SharpDX.Angle
            object is greater than or equal to another SharpDX.AngleSingle object.
            </summary>
            <param name="left">The first object to compare.</param>
            <param name="right">The second object to compare.</param>
            <returns>True if left is greater than or equal to right; otherwise, false.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.op_UnaryPlus(SharpDX.AngleSingle)">
            <summary>
            Returns the value of the SharpDX.AngleSingle operand. (The sign of
            the operand is unchanged.)
            </summary>
            <param name="value">A SharpDX.AngleSingle object.</param>
            <returns>The value of the value parameter.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.op_UnaryNegation(SharpDX.AngleSingle)">
            <summary>
            Returns the the negated value of the SharpDX.AngleSingle operand.
            </summary>
            <param name="value">A SharpDX.AngleSingle object.</param>
            <returns>The negated value of the value parameter.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.op_Addition(SharpDX.AngleSingle,SharpDX.AngleSingle)">
            <summary>
            Adds two SharpDX.AngleSingle objects and returns the result.
            </summary>
            <param name="left">The first object to add.</param>
            <param name="right">The second object to add.</param>
            <returns>The value of the two objects added together.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.op_Subtraction(SharpDX.AngleSingle,SharpDX.AngleSingle)">
            <summary>
            Subtracts two SharpDX.AngleSingle objects and returns the result.
            </summary>
            <param name="left">The first object to subtract</param>
            <param name="right">The second object to subtract.</param>
            <returns>The value of the two objects subtracted.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.op_Multiply(SharpDX.AngleSingle,SharpDX.AngleSingle)">
            <summary>
            Multiplies two SharpDX.AngleSingle objects and returns the result.
            </summary>
            <param name="left">The first object to multiply.</param>
            <param name="right">The second object to multiply.</param>
            <returns>The value of the two objects multiplied together.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.op_Division(SharpDX.AngleSingle,SharpDX.AngleSingle)">
            <summary>
            Divides two SharpDX.AngleSingle objects and returns the result.
            </summary>
            <param name="left">The numerator object.</param>
            <param name="right">The denominator object.</param>
            <returns>The value of the two objects divided.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.CompareTo(System.Object)">
            <summary>
            Compares this instance to a specified object and returns an integer that
            indicates whether the value of this instance is less than, equal to, or greater
            than the value of the specified object.
            </summary>
            <param name="other">The object to compare.</param>
            <returns>
            A signed integer that indicates the relationship of the current instance
            to the obj parameter. If the value is less than zero, the current instance
            is less than the other. If the value is zero, the current instance is equal
            to the other. If the value is greater than zero, the current instance is
            greater than the other.
            </returns>
        </member>
        <member name="M:SharpDX.AngleSingle.CompareTo(SharpDX.AngleSingle)">
            <summary>
            Compares this instance to a second SharpDX.AngleSingle and returns
            an integer that indicates whether the value of this instance is less than,
            equal to, or greater than the value of the specified object.
            </summary>
            <param name="other">The object to compare.</param>
            <returns>
            A signed integer that indicates the relationship of the current instance
            to the obj parameter. If the value is less than zero, the current instance
            is less than the other. If the value is zero, the current instance is equal
            to the other. If the value is greater than zero, the current instance is
            greater than the other.
            </returns>
        </member>
        <member name="M:SharpDX.AngleSingle.Equals(SharpDX.AngleSingle)">
            <summary>
            Returns a value that indicates whether the current instance and a specified
            SharpDX.AngleSingle object have the same value.
            </summary>
            <param name="other">The object to compare.</param>
            <returns>
            Returns true if this SharpDX.AngleSingle object and another have the same value;
            otherwise, false.
            </returns>
        </member>
        <member name="M:SharpDX.AngleSingle.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:SharpDX.AngleSingle.ToString(System.String)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="format">The format.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.AngleSingle.ToString(System.IFormatProvider)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="formatProvider">The format provider.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.AngleSingle.ToString(System.String,System.IFormatProvider)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="format">The format.</param>
            <param name="formatProvider">The format provider.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.AngleSingle.GetHashCode">
            <summary>
            Returns a hash code for this SharpDX.AngleSingle instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.Equals(System.Object)">
            <summary>
            Returns a value that indicates whether the current instance and a specified
            object have the same value.
            </summary>
            <param name="obj">The object to compare.</param>
            <returns>
            Returns true if the obj parameter is a SharpDX.AngleSingle object or a type
            capable of implicit conversion to a SharpDX.AngleSingle value, and
            its value is equal to the value of the current SharpDX.Angle
            object; otherwise, false.
            </returns>
        </member>
        <member name="T:SharpDX.Mathematics.AssemblyDoc">
            <summary>
            The <see cref="A:SharpDX.Mathematics"/> assembly is a managed Math API.
            </summary>
        </member>
        <member name="T:SharpDX.Mathematics.NamespaceDoc">
            <summary>
            The <see cref="N:SharpDX.Mathematics"/> namespace provides managed Direct3D Compiler API.
            </summary>
            <msdn-id>dd607340</msdn-id>
            <unmanaged>Math</unmanaged>	
            <unmanaged-short>Math</unmanaged-short>	
        </member>
        <member name="T:SharpDX.Bool4">
            <summary>
            Represents a four dimensional mathematical vector of bool (32 bits per bool value).
            </summary>
        </member>
        <member name="F:SharpDX.Bool4.SizeInBytes">
            <summary>
            The size of the <see cref = "T:SharpDX.Bool4" /> type, in bytes.
            </summary>
        </member>
        <member name="F:SharpDX.Bool4.False">
            <summary>
            A <see cref = "T:SharpDX.Bool4" /> with all of its components set to false.
            </summary>
        </member>
        <member name="F:SharpDX.Bool4.UnitX">
            <summary>
            The X unit <see cref = "T:SharpDX.Bool4" /> (true, 0, 0, 0).
            </summary>
        </member>
        <member name="F:SharpDX.Bool4.UnitY">
            <summary>
            The Y unit <see cref = "T:SharpDX.Bool4" /> (0, true, 0, 0).
            </summary>
        </member>
        <member name="F:SharpDX.Bool4.UnitZ">
            <summary>
            The Z unit <see cref = "T:SharpDX.Bool4" /> (0, 0, true, 0).
            </summary>
        </member>
        <member name="F:SharpDX.Bool4.UnitW">
            <summary>
            The W unit <see cref = "T:SharpDX.Bool4" /> (0, 0, 0, true).
            </summary>
        </member>
        <member name="F:SharpDX.Bool4.One">
            <summary>
            A <see cref = "T:SharpDX.Bool4" /> with all of its components set to true.
            </summary>
        </member>
        <member name="F:SharpDX.Bool4.iX">
            <summary>
            The X component of the vector.
            </summary>
        </member>
        <member name="F:SharpDX.Bool4.iY">
            <summary>
            The Y component of the vector.
            </summary>
        </member>
        <member name="F:SharpDX.Bool4.iZ">
            <summary>
            The Z component of the vector.
            </summary>
        </member>
        <member name="F:SharpDX.Bool4.iW">
            <summary>
            The W component of the vector.
            </summary>
        </member>
        <member name="P:SharpDX.Bool4.X">
            <summary>
            The X component of the vector.
            </summary>
        </member>
        <member name="P:SharpDX.Bool4.Y">
            <summary>
            The Y component of the vector.
            </summary>
        </member>
        <member name="P:SharpDX.Bool4.Z">
            <summary>
            The Z component of the vector.
            </summary>
        </member>
        <member name="P:SharpDX.Bool4.W">
            <summary>
            The W component of the vector.
            </summary>
        </member>
        <member name="M:SharpDX.Bool4.#ctor(System.Boolean)">
            <summary>
            Initializes a new instance of the <see cref = "T:SharpDX.Bool4" /> struct.
            </summary>
            <param name = "value">The value that will be assigned to all components.</param>
        </member>
        <member name="M:SharpDX.Bool4.#ctor(System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
            <summary>
            Initializes a new instance of the <see cref = "T:SharpDX.Bool4" /> struct.
            </summary>
            <param name = "x">Initial value for the X component of the vector.</param>
            <param name = "y">Initial value for the Y component of the vector.</param>
            <param name = "z">Initial value for the Z component of the vector.</param>
            <param name = "w">Initial value for the W component of the vector.</param>
        </member>
        <member name="M:SharpDX.Bool4.#ctor(System.Boolean[])">
            <summary>
            Initializes a new instance of the <see cref = "T:SharpDX.Bool4" /> struct.
            </summary>
            <param name = "values">The values to assign to the X, Y, Z, and W components of the vector. This must be an array with four elements.</param>
            <exception cref = "T:System.ArgumentNullException">Thrown when <paramref name = "values" /> is <c>null</c>.</exception>
            <exception cref = "T:System.ArgumentOutOfRangeException">Thrown when <paramref name = "values" /> contains more or less than four elements.</exception>
        </member>
        <member name="P:SharpDX.Bool4.Item(System.Int32)">
            <summary>
            Gets or sets the component at the specified index.
            </summary>
            <value>The value of the X, Y, Z, or W component, depending on the index.</value>
            <param name = "index">The index of the component to access. Use 0 for the X component, 1 for the Y component, 2 for the Z component, and 3 for the W component.</param>
            <returns>The value of the component at the specified index.</returns>
            <exception cref = "T:System.ArgumentOutOfRangeException">Thrown when the <paramref name = "index" /> is out of the range [0, 3].</exception>
        </member>
        <member name="M:SharpDX.Bool4.ToArray">
            <summary>
            Creates an array containing the elements of the vector.
            </summary>
            <returns>A four-element array containing the components of the vector.</returns>
        </member>
        <member name="M:SharpDX.Bool4.op_Equality(SharpDX.Bool4,SharpDX.Bool4)">
            <summary>
            Tests for equality between two objects.
            </summary>
            <param name = "left">The first value to compare.</param>
            <param name = "right">The second value to compare.</param>
            <returns><c>true</c> if <paramref name = "left" /> has the same value as <paramref name = "right" />; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.Bool4.op_Inequality(SharpDX.Bool4,SharpDX.Bool4)">
            <summary>
            Tests for inequality between two objects.
            </summary>
            <param name = "left">The first value to compare.</param>
            <param name = "right">The second value to compare.</param>
            <returns><c>true</c> if <paramref name = "left" /> has a different value than <paramref name = "right" />; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.Bool4.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:SharpDX.Bool4.ToString(System.String,System.IFormatProvider)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="format">The format.</param>
            <param name="formatProvider">The format provider.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Bool4.GetHashCode">
            <summary>
            Returns a hash code for this instance.
            </summary>
            <returns>
            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. 
            </returns>
        </member>
        <member name="M:SharpDX.Bool4.Equals(SharpDX.Bool4@)">
            <summary>
            Determines whether the specified <see cref = "T:SharpDX.Bool4" /> is equal to this instance.
            </summary>
            <param name = "other">The <see cref = "T:SharpDX.Bool4" /> to compare with this instance.</param>
            <returns>
            <c>true</c> if the specified <see cref = "T:SharpDX.Bool4" /> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.Bool4.Equals(SharpDX.Bool4)">
            <summary>
            Determines whether the specified <see cref = "T:SharpDX.Bool4" /> is equal to this instance.
            </summary>
            <param name = "other">The <see cref = "T:SharpDX.Bool4" /> to compare with this instance.</param>
            <returns>
            <c>true</c> if the specified <see cref = "T:SharpDX.Bool4" /> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.Bool4.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref = "T:System.Object" /> is equal to this instance.
            </summary>
            <param name = "value">The <see cref = "T:System.Object" /> to compare with this instance.</param>
            <returns>
            <c>true</c> if the specified <see cref = "T:System.Object" /> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.Bool4.op_Implicit(System.Boolean[])~SharpDX.Bool4">
            <summary>
            Performs an implicit conversion from <see cref="T:System.Int32"/> array to <see cref="T:SharpDX.Bool4"/>.
            </summary>
            <param name="input">The input.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="M:SharpDX.Bool4.op_Implicit(SharpDX.Bool4)~System.Boolean[]">
            <summary>
            Performs an implicit conversion from <see cref="T:SharpDX.Bool4"/> to <see cref="T:System.Int32"/> array.
            </summary>
            <param name="input">The input.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="M:SharpDX.Bool4.op_Implicit(SharpDX.Bool4)~SharpDX.Mathematics.Interop.RawBool4">
            <summary>
            Performs an implicit conversion from <see cref="T:SharpDX.Bool4"/> to <see cref="T:SharpDX.Mathematics.Interop.RawBool4"/>.
            </summary>
            <param name="value">The value.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="M:SharpDX.Bool4.op_Implicit(SharpDX.Mathematics.Interop.RawBool4)~SharpDX.Bool4">
            <summary>
            Performs an implicit conversion from <see cref="T:SharpDX.Mathematics.Interop.RawBool4"/> to <see cref="T:SharpDX.Bool4"/>.
            </summary>
            <param name="value">The value.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="T:SharpDX.BoundingBox">
            <summary>
            Represents an axis-aligned bounding box in three dimensional space.
            </summary>
        </member>
        <member name="F:SharpDX.BoundingBox.Minimum">
            <summary>
            The minimum point of the box.
            </summary>
        </member>
        <member name="F:SharpDX.BoundingBox.Maximum">
            <summary>
            The maximum point of the box.
            </summary>
        </member>
        <member name="M:SharpDX.BoundingBox.#ctor(SharpDX.Vector3,SharpDX.Vector3)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.BoundingBox"/> struct.
            </summary>
            <param name="minimum">The minimum vertex of the bounding box.</param>
            <param name="maximum">The maximum vertex of the bounding box.</param>
        </member>
        <member name="M:SharpDX.BoundingBox.GetCorners">
            <summary>
            Retrieves the eight corners of the bounding box.
            </summary>
            <returns>An array of points representing the eight corners of the bounding box.</returns>
        </member>
        <member name="M:SharpDX.BoundingBox.GetCorners(SharpDX.Vector3[])">
            <summary>
            Retrieves the eight corners of the bounding box.
            </summary>
            <returns>An array of points representing the eight corners of the bounding box.</returns>
        </member>
        <member name="M:SharpDX.BoundingBox.Intersects(SharpDX.Ray@)">
            <summary>
            Determines if there is an intersection between the current object and a <see cref="T:SharpDX.Ray"/>.
            </summary>
            <param name="ray">The ray to test.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.BoundingBox.Intersects(SharpDX.Ray@,System.Single@)">
            <summary>
            Determines if there is an intersection between the current object and a <see cref="T:SharpDX.Ray"/>.
            </summary>
            <param name="ray">The ray to test.</param>
            <param name="distance">When the method completes, contains the distance of the intersection,
            or 0 if there was no intersection.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.BoundingBox.Intersects(SharpDX.Ray@,SharpDX.Vector3@)">
            <summary>
            Determines if there is an intersection between the current object and a <see cref="T:SharpDX.Ray"/>.
            </summary>
            <param name="ray">The ray to test.</param>
            <param name="point">When the method completes, contains the point of intersection,
            or <see cref="F:SharpDX.Vector3.Zero"/> if there was no intersection.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.BoundingBox.Intersects(SharpDX.Plane@)">
            <summary>
            Determines if there is an intersection between the current object and a <see cref="T:SharpDX.Plane"/>.
            </summary>
            <param name="plane">The plane to test.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.BoundingBox.Intersects(SharpDX.BoundingBox@)">
            <summary>
            Determines if there is an intersection between the current object and a <see cref="T:SharpDX.BoundingBox"/>.
            </summary>
            <param name="box">The box to test.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.BoundingBox.Intersects(SharpDX.BoundingBox)">
            <summary>
            Determines if there is an intersection between the current object and a <see cref="T:SharpDX.BoundingBox"/>.
            </summary>
            <param name="box">The box to test.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.BoundingBox.Intersects(SharpDX.BoundingSphere@)">
            <summary>
            Determines if there is an intersection between the current object and a <see cref="T:SharpDX.BoundingSphere"/>.
            </summary>
            <param name="sphere">The sphere to test.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.BoundingBox.Intersects(SharpDX.BoundingSphere)">
            <summary>
            Determines if there is an intersection between the current object and a <see cref="T:SharpDX.BoundingSphere"/>.
            </summary>
            <param name="sphere">The sphere to test.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.BoundingBox.Contains(SharpDX.Vector3@)">
            <summary>
            Determines whether the current objects contains a point.
            </summary>
            <param name="point">The point to test.</param>
            <returns>The type of containment the two objects have.</returns>
        </member>
        <member name="M:SharpDX.BoundingBox.Contains(SharpDX.Vector3)">
            <summary>
            Determines whether the current objects contains a point.
            </summary>
            <param name="point">The point to test.</param>
            <returns>The type of containment the two objects have.</returns>
        </member>
        <member name="M:SharpDX.BoundingBox.Contains(SharpDX.BoundingBox@)">
            <summary>
            Determines whether the current objects contains a <see cref="T:SharpDX.BoundingBox"/>.
            </summary>
            <param name="box">The box to test.</param>
            <returns>The type of containment the two objects have.</returns>
        </member>
        <member name="M:SharpDX.BoundingBox.Contains(SharpDX.BoundingBox)">
            <summary>
            Determines whether the current objects contains a <see cref="T:SharpDX.BoundingBox"/>.
            </summary>
            <param name="box">The box to test.</param>
            <returns>The type of containment the two objects have.</returns>
        </member>
        <member name="M:SharpDX.BoundingBox.Contains(SharpDX.BoundingSphere@)">
            <summary>
            Determines whether the current objects contains a <see cref="T:SharpDX.BoundingSphere"/>.
            </summary>
            <param name="sphere">The sphere to test.</param>
            <returns>The type of containment the two objects have.</returns>
        </member>
        <member name="M:SharpDX.BoundingBox.Contains(SharpDX.BoundingSphere)">
            <summary>
            Determines whether the current objects contains a <see cref="T:SharpDX.BoundingSphere"/>.
            </summary>
            <param name="sphere">The sphere to test.</param>
            <returns>The type of containment the two objects have.</returns>
        </member>
        <member name="M:SharpDX.BoundingBox.FromPoints(SharpDX.Vector3[],SharpDX.BoundingBox@)">
            <summary>
            Constructs a <see cref="T:SharpDX.BoundingBox"/> that fully contains the given points.
            </summary>
            <param name="points">The points that will be contained by the box.</param>
            <param name="result">When the method completes, contains the newly constructed bounding box.</param>
            <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="points"/> is <c>null</c>.</exception>
        </member>
        <member name="M:SharpDX.BoundingBox.FromPoints(SharpDX.Vector3[])">
            <summary>
            Constructs a <see cref="T:SharpDX.BoundingBox"/> that fully contains the given points.
            </summary>
            <param name="points">The points that will be contained by the box.</param>
            <returns>The newly constructed bounding box.</returns>
            <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="points"/> is <c>null</c>.</exception>
        </member>
        <member name="M:SharpDX.BoundingBox.FromSphere(SharpDX.BoundingSphere@,SharpDX.BoundingBox@)">
            <summary>
            Constructs a <see cref="T:SharpDX.BoundingBox"/> from a given sphere.
            </summary>
            <param name="sphere">The sphere that will designate the extents of the box.</param>
            <param name="result">When the method completes, contains the newly constructed bounding box.</param>
        </member>
        <member name="M:SharpDX.BoundingBox.FromSphere(SharpDX.BoundingSphere)">
            <summary>
            Constructs a <see cref="T:SharpDX.BoundingBox"/> from a given sphere.
            </summary>
            <param name="sphere">The sphere that will designate the extents of the box.</param>
            <returns>The newly constructed bounding box.</returns>
        </member>
        <member name="M:SharpDX.BoundingBox.Merge(SharpDX.BoundingBox@,SharpDX.BoundingBox@,SharpDX.BoundingBox@)">
            <summary>
            Constructs a <see cref="T:SharpDX.BoundingBox"/> that is as large as the total combined area of the two specified boxes.
            </summary>
            <param name="value1">The first box to merge.</param>
            <param name="value2">The second box to merge.</param>
            <param name="result">When the method completes, contains the newly constructed bounding box.</param>
        </member>
        <member name="M:SharpDX.BoundingBox.Merge(SharpDX.BoundingBox,SharpDX.BoundingBox)">
            <summary>
            Constructs a <see cref="T:SharpDX.BoundingBox"/> that is as large as the total combined area of the two specified boxes.
            </summary>
            <param name="value1">The first box to merge.</param>
            <param name="value2">The second box to merge.</param>
            <returns>The newly constructed bounding box.</returns>
        </member>
        <member name="M:SharpDX.BoundingBox.op_Equality(SharpDX.BoundingBox,SharpDX.BoundingBox)">
            <summary>
            Tests for equality between two objects.
            </summary>
            <param name="left">The first value to compare.</param>
            <param name="right">The second value to compare.</param>
            <returns><c>true</c> if <paramref name="left"/> has the same value as <paramref name="right"/>; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.BoundingBox.op_Inequality(SharpDX.BoundingBox,SharpDX.BoundingBox)">
            <summary>
            Tests for inequality between two objects.
            </summary>
            <param name="left">The first value to compare.</param>
            <param name="right">The second value to compare.</param>
            <returns><c>true</c> if <paramref name="left"/> has a different value than <paramref name="right"/>; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.BoundingBox.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:SharpDX.BoundingBox.ToString(System.String)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="format">The format.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.BoundingBox.ToString(System.IFormatProvider)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="formatProvider">The format provider.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.BoundingBox.ToString(System.String,System.IFormatProvider)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="format">The format.</param>
            <param name="formatProvider">The format provider.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.BoundingBox.GetHashCode">
            <summary>
            Returns a hash code for this instance.
            </summary>
            <returns>
            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. 
            </returns>
        </member>
        <member name="M:SharpDX.BoundingBox.Equals(SharpDX.BoundingBox@)">
            <summary>
            Determines whether the specified <see cref="T:SharpDX.Vector4"/> is equal to this instance.
            </summary>
            <param name="value">The <see cref="T:SharpDX.Vector4"/> to compare with this instance.</param>
            <returns>
            <c>true</c> if the specified <see cref="T:SharpDX.Vector4"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.BoundingBox.Equals(SharpDX.BoundingBox)">
            <summary>
            Determines whether the specified <see cref="T:SharpDX.Vector4"/> is equal to this instance.
            </summary>
            <param name="value">The <see cref="T:SharpDX.Vector4"/> to compare with this instance.</param>
            <returns>
            <c>true</c> if the specified <see cref="T:SharpDX.Vector4"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.BoundingBox.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
            </summary>
            <param name="value">The <see cref="T:System.Object"/> to compare with this instance.</param>
            <returns>
            <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="T:SharpDX.BoundingFrustum">
            <summary>
            Defines a frustum which can be used in frustum culling, zoom to Extents (zoom to fit) operations, 
            (matrix, frustum, camera) interchange, and many kind of intersection testing.
            </summary>
        </member>
        <member name="P:SharpDX.BoundingFrustum.Matrix">
            <summary>
            Gets or sets the Matrix that describes this bounding frustum.
            </summary>
        </member>
        <member name="P:SharpDX.BoundingFrustum.Near">
            <summary>
            Gets the near plane of the BoundingFrustum.
            </summary>
        </member>
        <member name="P:SharpDX.BoundingFrustum.Far">
            <summary>
            Gets the far plane of the BoundingFrustum.
            </summary>
        </member>
        <member name="P:SharpDX.BoundingFrustum.Left">
            <summary>
            Gets the left plane of the BoundingFrustum.
            </summary>
        </member>
        <member name="P:SharpDX.BoundingFrustum.Right">
            <summary>
            Gets the right plane of the BoundingFrustum.
            </summary>
        </member>
        <member name="P:SharpDX.BoundingFrustum.Top">
            <summary>
            Gets the top plane of the BoundingFrustum.
            </summary>
        </member>
        <member name="P:SharpDX.BoundingFrustum.Bottom">
            <summary>
            Gets the bottom plane of the BoundingFrustum.
            </summary>
        </member>
        <member name="M:SharpDX.BoundingFrustum.#ctor(SharpDX.Matrix)">
            <summary>
            Creates a new instance of BoundingFrustum.
            </summary>
            <param name="matrix">Combined matrix that usually takes view × projection matrix.</param>
        </member>
        <member name="M:SharpDX.BoundingFrustum.Equals(SharpDX.BoundingFrustum@)">
            <summary>
            Determines whether the specified <see cref="T:SharpDX.BoundingFrustum"/> is equal to this instance.
            </summary>
            <param name="other">The <see cref="T:SharpDX.BoundingFrustum"/> to compare with this instance.</param>
            <returns>
              <c>true</c> if the specified <see cref="T:SharpDX.BoundingFrustum"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.BoundingFrustum.Equals(SharpDX.BoundingFrustum)">