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