Popularity
1.6
Growing
Activity
0.0
Stable
0
3
0

Monthly Downloads: 5
Programming language: JavaScript
License: MIT License
Tags: Graphics    

VRML alternatives and similar packages

Based on the "Graphics" category.
Alternatively, view VRML alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of VRML or a related project?

Add another 'Graphics' Package

README

VRML

VRML is a text file format for a 3D polygon. It is a standard known as ISO/IEC 14772-1:1997. It has been superseded by X3D.

webots uses VRML-format to make simulation environment. This package is developed for making the environment by haskell.

VRML to Haskell

vrml2haskell command generates haskell-code from VRML-file. Usage is below.

> vrml2haskell "vrml file" > "haskell file"

Haskell to VRML

'ToNode' type-class makes VRML-data from Haskell-data with deriving ToNode.

class ToNode a where
  toNode :: NodeLike b => a -> b

Usage of deriving ToNode is below.

data Box = Box
  { size :: (Float,Float,Float)
  } deriving (Generic,Show,Eq,ToNode)