Class Vector3
Inherited Members
Namespace: Microsoft.XboxStudios.UnrealToolkit.Numerics.GeneratedProto
Assembly: UnrealToolkit.Bifrost.Proto.HookClient.dll
Syntax
public sealed class Vector3 : IMessage<Vector3>, IEquatable<Vector3>, IDeepCloneable<Vector3>, IBufferMessage, IMessageConstructors
View SourceVector3()
Declaration
public Vector3()Vector3(Vector3)
Declaration
public Vector3(Vector3 other)Parameters
| Type | Name | Description | 
|---|---|---|
| Vector3 | other | 
Fields
View SourceXFieldNumber
Field number for the "x" field.
Declaration
public const int XFieldNumber = 1Field Value
| Type | Description | 
|---|---|
| int | 
YFieldNumber
Field number for the "y" field.
Declaration
public const int YFieldNumber = 2Field Value
| Type | Description | 
|---|---|
| int | 
ZFieldNumber
Field number for the "z" field.
Declaration
public const int ZFieldNumber = 3Field Value
| Type | Description | 
|---|---|
| int | 
Properties
View SourceDescriptor
Declaration
public static MessageDescriptor Descriptor { get; }Property Value
| Type | Description | 
|---|---|
| MessageDescriptor | 
Parser
Declaration
public static MessageParser<Vector3> Parser { get; }Property Value
| Type | Description | 
|---|---|
| MessageParser<Vector3> | 
X
Declaration
public float X { get; set; }Property Value
| Type | Description | 
|---|---|
| float | 
Y
Declaration
public float Y { get; set; }Property Value
| Type | Description | 
|---|---|
| float | 
Z
Declaration
public float Z { get; set; }Property Value
| Type | Description | 
|---|---|
| float | 
Methods
View SourceCalculateSize()
Calculates the size of this message in Protocol Buffer wire format, in bytes.
Declaration
public int CalculateSize()Returns
| Type | Description | 
|---|---|
| int | The number of bytes required to write this message to a coded output stream. | 
Clone()
Creates a deep clone of this object.
Declaration
public Vector3 Clone()Returns
| Type | Description | 
|---|---|
| Vector3 | A deep clone of this object. | 
Equals(Vector3)
Indicates whether the current object is equal to another object of the same type.
Declaration
public bool Equals(Vector3 other)Parameters
| Type | Name | Description | 
|---|---|---|
| Vector3 | other | An object to compare with this object. | 
Returns
| Type | Description | 
|---|---|
| bool | true if the current object is equal to the  | 
Equals(object)
Determines whether the specified object is equal to the current object.
Declaration
public override bool Equals(object other)Parameters
| Type | Name | Description | 
|---|---|---|
| object | other | 
Returns
| Type | Description | 
|---|---|
| bool | true if the specified object is equal to the current object; otherwise, false. | 
Overrides
View SourceGetHashCode()
Serves as the default hash function.
Declaration
public override int GetHashCode()Returns
| Type | Description | 
|---|---|
| int | A hash code for the current object. | 
Overrides
View SourceMergeFrom(CodedInputStream)
Merges the data from the specified coded input stream with the current message.
Declaration
public void MergeFrom(CodedInputStream input)Parameters
| Type | Name | Description | 
|---|---|---|
| CodedInputStream | input | 
Remarks
See the user guide for precise merge semantics.
MergeFrom(Vector3)
Merges the given message into this one.
Declaration
public void MergeFrom(Vector3 other)Parameters
| Type | Name | Description | 
|---|---|---|
| Vector3 | other | 
Remarks
See the user guide for precise merge semantics.
ToString()
Returns a string that represents the current object.
Declaration
public override string ToString()Returns
| Type | Description | 
|---|---|
| string | A string that represents the current object. | 
Overrides
View SourceWriteTo(CodedOutputStream)
Writes the data to the given coded output stream.
Declaration
public void WriteTo(CodedOutputStream output)Parameters
| Type | Name | Description | 
|---|---|---|
| CodedOutputStream | output | Coded output stream to write the data to. Must not be null. |