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

org.hyperscala.svg.Line.scala Maven / Gradle / Ivy

package org.hyperscala.svg

import traits.Shape
import org.hyperscala.PropertyAttribute

/**
 * @author Matt Hicks 
 */
class Line extends Shape {
  lazy val xmlLabel = "line"

  lazy val x1 = PropertyAttribute[Double]("x1", 0.0)
  lazy val y1 = PropertyAttribute[Double]("y1", 0.0)
  lazy val x2 = PropertyAttribute[Double]("x2", 0.0)
  lazy val y2 = PropertyAttribute[Double]("y2", 0.0)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy