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

com.github.mdr.ascii.layout.VertexRenderingStrategy.scala Maven / Gradle / Ivy

package com.github.mdr.ascii.layout

import com.github.mdr.ascii.Dimension

trait VertexRenderingStrategy[-V] {

  def getPreferredSize(v: V): Dimension

  /**
   * @return rows of text
   */
  def getText(v: V, allocatedSize: Dimension): List[String]

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy