Struct BoundingBox
Syntax
public struct BoundingBox : IMessageProducer
Properties
dimension
(width/height) dimensions of the bounding box
Declaration
public Vector2 dimension { readonly get; set; }
Property Value
instanceId
Declaration
public int instanceId { readonly get; set; }
Property Value
labelId
Declaration
public int labelId { readonly get; set; }
Property Value
labelName
Declaration
public string labelName { readonly get; set; }
Property Value
origin
(xy) pixel location of the object's bounding box
Declaration
public Vector2 origin { readonly get; set; }
Property Value
Methods
ToMessage(IMessageBuilder)
Convert contents int a message.
Declaration
public void ToMessage(IMessageBuilder builder)
Parameters
Type |
Name |
Description |
IMessageBuilder |
builder |
The message builder that will convert the class's contents into a message
|
Implements