object MeshIO

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MeshIO
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. def readAndCorrectMesh(file: File): Try[TriangleMesh[_3D]]
  16. def readHDF5(file: File): Try[TriangleMesh[_3D]]
  17. def readLineMesh2D(file: File): Try[LineMesh[_2D]]
  18. def readLineMesh3D(file: File): Try[LineMesh[_3D]]
  19. def readMesh(file: File): Try[TriangleMesh[_3D]]
  20. def readScalarMeshField[S](file: File)(implicit arg0: Scalar[S], arg1: scala.reflect.api.JavaUniverse.TypeTag[S], arg2: ClassTag[S]): Try[ScalarMeshField[S]]

    Reads a ScalarMeshField from file.

    Reads a ScalarMeshField from file. The indicated Scalar type S must match the data type encoded in the file

  21. def readScalarMeshFieldAsType[S](file: File)(implicit arg0: Scalar[S], arg1: scala.reflect.api.JavaUniverse.TypeTag[S], arg2: ClassTag[S]): Try[ScalarMeshField[S]]

    Reads a ScalarMeshField from file while casting its data to the indicated Scalar type S if necessary

  22. def readScalarVolumeMeshField[S](file: File)(implicit arg0: Scalar[S], arg1: scala.reflect.api.JavaUniverse.TypeTag[S], arg2: ClassTag[S]): Try[ScalarVolumeMeshField[S]]
  23. def readScalarVolumeMeshFieldAsType[S](file: File)(implicit arg0: Scalar[S], arg1: scala.reflect.api.JavaUniverse.TypeTag[S], arg2: ClassTag[S]): Try[ScalarVolumeMeshField[S]]
  24. def readTetrahedralMesh(file: File): Try[TetrahedralMesh[_3D]]

    Reads a TetrahedralMesh[_3D] from a file with one of the extensions ".vtk", ".vtu", or ".inp".

    Reads a TetrahedralMesh[_3D] from a file with one of the extensions ".vtk", ".vtu", or ".inp". The ".vtk" and ".vtu" files are standard VTK formats while ".inp" is the AVS UCD format.

  25. def readVertexColorMesh3D(file: File): Try[VertexColorMesh3D]
  26. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  27. def toString(): String
    Definition Classes
    AnyRef → Any
  28. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  29. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  30. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  31. def writeHDF5(surface: TriangleMesh[_3D], file: File): Try[Unit]
  32. def writeLineMesh[D](polyLine: LineMesh[D], file: File)(implicit arg0: NDSpace[D]): Try[Unit]
  33. def writeMesh(mesh: TriangleMesh[_3D], file: File): Try[Unit]
  34. def writeSTL(surface: TriangleMesh[_3D], file: File): Try[Unit]
  35. def writeScalarMeshField[S](meshData: ScalarMeshField[S], file: File)(implicit arg0: Scalar[S], arg1: scala.reflect.api.JavaUniverse.TypeTag[S], arg2: ClassTag[S]): Try[Unit]
  36. def writeScalarVolumeMeshField[S](meshData: ScalarVolumeMeshField[S], file: File)(implicit arg0: Scalar[S], arg1: scala.reflect.api.JavaUniverse.TypeTag[S], arg2: ClassTag[S]): Try[Unit]
  37. def writeTetrahedralMesh(mesh: TetrahedralMesh[_3D], file: File): Try[Unit]

    Writes a TetrahedralMesh[_3D] to a file in one of the two standard VTK file formats ".vtk", or ".vtu".

  38. def writeVTK(surface: TriangleMesh[_3D], file: File): Try[Unit]
  39. def writeVTK[S](meshData: ScalarMeshField[S], file: File)(implicit arg0: Scalar[S], arg1: scala.reflect.api.JavaUniverse.TypeTag[S], arg2: ClassTag[S]): Try[Unit]
  40. def writeVertexColorMesh3D(mesh: VertexColorMesh3D, file: File): Try[Unit]

    Writes a VertexColorMesh3D to a file.

    Writes a VertexColorMesh3D to a file.

    **Important**: For PLY, since we use the VTK file writer, and since it does not support RGBA, only RGB, the alpha channel will be ignored while writing.

Inherited from AnyRef

Inherited from Any

Ungrouped