-----------------------------------------------------------------------------
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
-----------------------------------------------------------------------------
module THREE.Cylindrical
  ( -- * Types
    Cylindrical (..)
    -- * Methods
  , THREE.Cylindrical.new
    -- * Properties
  ) where
-----------------------------------------------------------------------------
import           Miso
-----------------------------------------------------------------------------
import qualified THREE.Internal as THREE
-----------------------------------------------------------------------------
-- | https://threejs.org/docs/#api/en/scenes/Cylindrical
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)
-----------------------------------------------------------------------------
-- | https://threejs.org/docs/#api/en/cameras/Cylindrical
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])
-----------------------------------------------------------------------------