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