Floor

data class Floor(val id: Int = -1, val name: String = "", val number: Int = 0, val pois: List<Poi> = emptyList(), val walls: List<Wall> = emptyList())

Floor object representation that contains the information about the floor of the map object

Parameters

id

the id of the floor

name

the name of the floor

number

the number of the floor

pois

the list of points of interests (POIs) in the floor

walls

the list of walls in the floor

Constructors

Link copied to clipboard
constructor(id: Int = -1, name: String = "", number: Int = 0, pois: List<Poi> = emptyList(), walls: List<Wall> = emptyList())

Creates a floor object with the given parameters

Properties

Link copied to clipboard
val id: Int
Link copied to clipboard
Link copied to clipboard
val number: Int = 0
Link copied to clipboard
val pois: List<Poi>
Link copied to clipboard