Class NeonFloorOutline
- java.lang.Object
-
- com.trx.neon.api.neonEnvironment.model.NeonFloorOutline
-
- All Implemented Interfaces:
android.os.Parcelable
public class NeonFloorOutline extends java.lang.Object implements android.os.Parcelable
A Neon floor outline is composed of a list of LatLongOutlines. LatLongOutlines are formed from an outer hull and a list of interior holes in that outline. A building floor can therefore contain multiple, distinct outlines, each with a hull and a set of holes
-
-
Field Summary
Fields Modifier and Type Field Description static android.os.Parcelable.Creator<NeonFloorOutline>
CREATOR
java.util.List<LatLongOutline>
Outlines
A list of LatLongOutlines
-
Constructor Summary
Constructors Constructor Description NeonFloorOutline(java.util.List<LatLongOutline> outlines)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
describeContents()
void
writeToParcel(android.os.Parcel dest, int flags)
-
-
-
Field Detail
-
Outlines
public final java.util.List<LatLongOutline> Outlines
A list of LatLongOutlines
-
CREATOR
public static final android.os.Parcelable.Creator<NeonFloorOutline> CREATOR
-
-
Constructor Detail
-
NeonFloorOutline
public NeonFloorOutline(java.util.List<LatLongOutline> outlines)
-
-