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