mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-09-18 14:27:39 +03:00
Implementation of global functions STANDARD_TYPE() for types not inheriting Standard_Transient or Standard_Persistent are eliminated. Global functions and class methods ShallowCopy() are removed; also removed unused classes Visual3d_PickPath and Visual3d_PickDescriptor. Global functions and class methods ShallowDump() are removed, except for classes Standard_GUID, TopLoc_Datum, and TopLoc_Location as the latter are still used in some Debug printouts.
76 lines
2.6 KiB
C++
76 lines
2.6 KiB
C++
// Copyright (c) 1999-2014 OPEN CASCADE SAS
|
|
//
|
|
// This file is part of Open CASCADE Technology software library.
|
|
//
|
|
// This library is free software; you can redistribute it and/or modify it under
|
|
// the terms of the GNU Lesser General Public License version 2.1 as published
|
|
// by the Free Software Foundation, with special exception defined in the file
|
|
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
|
// distribution for complete text of the license and disclaimer of any warranty.
|
|
//
|
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
|
// commercial license or contractual agreement.
|
|
|
|
#ifndef _Graphic3d_CLight_HeaderFile
|
|
#define _Graphic3d_CLight_HeaderFile
|
|
|
|
#include <InterfaceGraphic_Graphic3d.hxx>
|
|
#include <InterfaceGraphic_Visual3d.hxx>
|
|
#include <Graphic3d_Vec.hxx>
|
|
|
|
//! Light definition
|
|
struct Graphic3d_CLight
|
|
{
|
|
|
|
public:
|
|
|
|
Graphic3d_Vec4 Color; //!< light color
|
|
Graphic3d_Vec4 Position; //!< light position
|
|
Graphic3d_Vec4 Direction; //!< direction of directional/spot light
|
|
Graphic3d_Vec4 Params; //!< packed light parameters
|
|
Standard_Integer Type; //!< Visual3d_TypeOfLightSource enumeration
|
|
Standard_Boolean IsHeadlight; //!< flag to mark head light
|
|
|
|
//! Const attenuation factor of positional light source
|
|
Standard_ShortReal ConstAttenuation() const { return Params.x(); }
|
|
|
|
//! Linear attenuation factor of positional light source
|
|
Standard_ShortReal LinearAttenuation() const { return Params.y(); }
|
|
|
|
//! Const, Linear attenuation factors of positional light source
|
|
Graphic3d_Vec2 Attenuation() const { return Params.xy(); }
|
|
|
|
//! Angle in radians of the cone created by the spot
|
|
Standard_ShortReal Angle() const { return Params.z(); }
|
|
|
|
//! Intensity distribution of the spot light, with 0..1 range.
|
|
Standard_ShortReal Concentration() const { return Params.w(); }
|
|
|
|
Standard_ShortReal& ChangeConstAttenuation() { return Params.x(); }
|
|
Standard_ShortReal& ChangeLinearAttenuation() { return Params.y(); }
|
|
Graphic3d_Vec2& ChangeAttenuation() { return Params.xy(); }
|
|
Standard_ShortReal& ChangeAngle() { return Params.z(); }
|
|
Standard_ShortReal& ChangeConcentration() { return Params.w(); }
|
|
|
|
public:
|
|
|
|
//! Empty constructor
|
|
Graphic3d_CLight()
|
|
: Color (1.0f, 1.0f, 1.0f, 1.0f),
|
|
Position (0.0f, 0.0f, 0.0f, 1.0f),
|
|
Direction (0.0f, 0.0f, 0.0f, 0.0f),
|
|
Params (0.0f, 0.0f, 0.0f, 0.0f),
|
|
Type (0),
|
|
IsHeadlight (Standard_False)
|
|
{
|
|
//
|
|
}
|
|
|
|
public:
|
|
|
|
DEFINE_STANDARD_ALLOC
|
|
|
|
};
|
|
|
|
#endif // Graphic3d_CLight_HeaderFile
|