{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
module THREE.IcosahedronGeometry
(
IcosahedronGeometry (..)
, THREE.IcosahedronGeometry.new
) where
import Miso
import qualified THREE.Internal as THREE
newtype IcosahedronGeometry
= IcosahedronGeometry
{ IcosahedronGeometry -> JSVal
unIcosahedronGeometryCamera :: JSVal
} deriving (IcosahedronGeometry -> IO Object
(IcosahedronGeometry -> IO Object) -> ToObject IcosahedronGeometry
forall a. (a -> IO Object) -> ToObject a
$ctoObject :: IcosahedronGeometry -> IO Object
toObject :: IcosahedronGeometry -> IO Object
ToObject)
new :: THREE.Three IcosahedronGeometry
new :: Three IcosahedronGeometry
new = (JSVal -> IcosahedronGeometry)
-> MisoString -> [MisoString] -> Three IcosahedronGeometry
forall args con.
ToArgs args =>
(JSVal -> con) -> MisoString -> args -> Three con
THREE.new JSVal -> IcosahedronGeometry
IcosahedronGeometry MisoString
"IcosahedronGeometry" ([] :: [MisoString])