MutableCell

data class MutableCell(    var id: DefinitionId,     var orientations: List<Orientations> = listOf(Orientations()),     var color: Vec3F? = null,     var priority: Int = 0,     var customName: String? = null)

Constructors

Link copied to clipboard
fun MutableCell(    id: DefinitionId,     orientations: List<Orientations> = listOf(Orientations()),     color: Vec3F? = null,     priority: Int = 0,     customName: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
var color: Vec3F? = null
Link copied to clipboard
var customName: String? = null
Link copied to clipboard
var id: DefinitionId
Link copied to clipboard
var orientations: List<Orientations>
Link copied to clipboard
var priority: Int = 0