UnityExtensionsToStringDetailed Method (Vector2D) |
Displays the current vector as a detailed string.
Namespace:
LightBuzz.Vitruvius
Assembly:
LightBuzz.Vitruvius (in LightBuzz.Vitruvius.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static string ToStringDetailed(
this Vector2D vector
)
<ExtensionAttribute>
Public Shared Function ToStringDetailed (
vector As Vector2D
) As String
public:
[ExtensionAttribute]
static String^ ToStringDetailed(
Vector2D vector
)
[<ExtensionAttribute>]
static member ToStringDetailed :
vector : Vector2D -> string
Parameters
- vector
- Type: LightBuzzVector2D
The vector to display.
Return Value
Type:
StringA detailed string representation of the elements of the vector.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
Vector2D. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also