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