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