public readonly struct PixelVectorPublic Structure PixelVector[<SealedAttribute>]
type PixelVector =
struct
inherit ValueType
end| Equals(Object) | (Overrides ValueTypeEquals(Object)) |
| Equals(PixelVector) | Check if two vectors are equal (bitwise). |
| GetHashCode | (Overrides ValueTypeGetHashCode) |
| GetType | Gets the Type of the current instance. (Inherited from Object) |
| NearlyEquals(PixelVector) | Check if two vectors are nearly equal (numerically). |
| ToString |
Returns the string representation of the point.
(Overrides ValueTypeToString) |
| WithX(Int32) | Returns a new vector with the specified X coordinate. |
| WithY(Int32) | Returns a new vector with the specified Y coordinate. |
| Addition(PixelVector, PixelVector) | Adds two vectors. |
| Division(PixelVector, Int32) | Scales a vector. |
| Equality(PixelVector, PixelVector) | |
| (PixelVector to PixelPoint) | Converts the PixelVector to a PixelPoint. |
| Inequality(PixelVector, PixelVector) | |
| Multiply(PixelVector, PixelVector) | Calculates the dot product of two vectors |
| Multiply(PixelVector, Int32) | Scales a vector. |
| Subtraction(PixelVector, PixelVector) | Subtracts two vectors. |
| UnaryNegation(PixelVector) | Negates a vector. |