-----------------------------------------------------------------------------
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
-----------------------------------------------------------------------------
module THREE.LatheGeometry
  ( -- * Types
    LatheGeometry (..)
    -- * Methods
  , THREE.LatheGeometry.new
    -- * Properties
  ) where
-----------------------------------------------------------------------------
import           Miso
-----------------------------------------------------------------------------
import qualified THREE.Internal as THREE
-----------------------------------------------------------------------------
-- | https://threejs.org/docs/#api/en/scenes/LatheGeometry
newtype LatheGeometry
  = LatheGeometry
  { LatheGeometry -> JSVal
unLatheGeometryCamera :: JSVal
  } deriving (LatheGeometry -> IO Object
(LatheGeometry -> IO Object) -> ToObject LatheGeometry
forall a. (a -> IO Object) -> ToObject a
$ctoObject :: LatheGeometry -> IO Object
toObject :: LatheGeometry -> IO Object
ToObject)
-----------------------------------------------------------------------------
-- | https://threejs.org/docs/#api/en/cameras/LatheGeometry
new :: THREE.Three LatheGeometry
new :: Three LatheGeometry
new = (JSVal -> LatheGeometry) -> MisoString -> () -> Three LatheGeometry
forall args con.
ToArgs args =>
(JSVal -> con) -> MisoString -> args -> Three con
THREE.new JSVal -> LatheGeometry
LatheGeometry MisoString
"LatheGeometry" ()
-----------------------------------------------------------------------------