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