All Downloads are FREE. Search and download functionalities are using the official Maven repository.

plotly.layout.Scene.scala Maven / Gradle / Ivy

package plotly
package layout

import java.lang.{ Integer => JInt, Double => JDouble, Boolean => JBoolean }

import dataclass.data
import plotly.element._

@data class Scene(
  xaxis: Option[Axis],
  yaxis: Option[Axis],
  zaxis: Option[Axis]
)

object Scene {
  def apply(
    xaxis: Axis = null,
    yaxis: Axis = null,
    zaxis: Axis = null
  ): Scene = new Scene(
    Option(xaxis),
    Option(yaxis),
    Option(zaxis)
  )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy