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