Class BoundingBox
Class implementation of bounding box
Inheritance
System.Object
BoundingBox
Namespace: Com.Syncfusion.Maps
Assembly: Syncfusion.SfMaps.Android.dll
Syntax
public class BoundingBox : Object
Constructors
BoundingBox()
Initializes a new instance of the BoundingBox class.
Declaration
public BoundingBox()
BoundingBox(Double, Double, Double, Double)
Initializes a new instance of the BoundingBox class.
Declaration
public BoundingBox(double minx, double miny, double maxx, double maxy)
Parameters
Type | Name | Description |
---|---|---|
System.Double | minx | To set the minimum x value |
System.Double | miny | To set minimum y value |
System.Double | maxx | To set the maximum x value |
System.Double | maxy | To set the maximum y value |
Properties
MaxX
Gets the maximum x value
Declaration
public double MaxX { get; }
Property Value
Type |
---|
System.Double |
MaxY
Gets the maximum Y Value
Declaration
public double MaxY { get; }
Property Value
Type |
---|
System.Double |
MaxZ
Gets the maximum z value
Declaration
public double MaxZ { get; }
Property Value
Type |
---|
System.Double |
MinX
Gets the minimum x value
Declaration
public double MinX { get; }
Property Value
Type |
---|
System.Double |
MinY
Gets the minimum y value
Declaration
public double MinY { get; }
Property Value
Type |
---|
System.Double |
MinZ
Gets the minimum z value
Declaration
public double MinZ { get; }
Property Value
Type |
---|
System.Double |