1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/src/Prs3d/Prs3d_ShadingAspect.cxx
kgv 611684187d 0029516: Visualization - eliminate redundant property Graphic3d_MaterialAspect::ReflectionMode()
Decomposition of Ambient, Diffuse, Specular and Emissive properties has been eliminated within *Graphic3d_MaterialAspect* definition,
so that following methods of *Graphic3d_MaterialAspect* class have been removed:
SetReflectionMode(), SetReflectionModeOn(), Ambient(), Diffuse(), Emissive(), Specular(), SetAmbient(), SetDiffuse(), SetSpecular(), SetEmissive().

Graphic3d_NOM_NEON_GNC non-physical material definition has been corrected
and define WHITE emission color coefficient instead of YELLOW.

Added method Graphic3d_ClipPlane::SetCappingColor() for more straight-forward modification of Capping color in case of non-physical material.
Prs3d_ShadingAspect::Color() has been fixed to return InteriorColor instead of material color coefficient in case of non-physical material.
2019-09-04 15:13:18 +03:00

171 lines
5.4 KiB
C++

// Copyright (c) 1995-1999 Matra Datavision
// 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.
#include <Prs3d_ShadingAspect.hxx>
#include <Graphic3d_AspectFillArea3d.hxx>
#include <Graphic3d_MaterialAspect.hxx>
#include <Quantity_Color.hxx>
#include <Standard_Type.hxx>
IMPLEMENT_STANDARD_RTTIEXT(Prs3d_ShadingAspect, Prs3d_BasicAspect)
//=======================================================================
//function : Prs3d_ShadingAspect
//purpose :
//=======================================================================
Prs3d_ShadingAspect::Prs3d_ShadingAspect()
{
const Graphic3d_MaterialAspect aMat (Graphic3d_NOM_BRASS);
const Quantity_Color aColor = aMat.AmbientColor();
myAspect = new Graphic3d_AspectFillArea3d (Aspect_IS_SOLID,
aColor,
aColor,
Aspect_TOL_SOLID,
1.0,
aMat,
aMat);
}
//=======================================================================
//function : SetColor
//purpose :
//=======================================================================
void Prs3d_ShadingAspect::SetColor (const Quantity_Color& theColor,
const Aspect_TypeOfFacingModel theModel)
{
if (theModel != Aspect_TOFM_BOTH_SIDE)
{
myAspect->SetDistinguishOn();
}
if (theModel == Aspect_TOFM_FRONT_SIDE
|| theModel == Aspect_TOFM_BOTH_SIDE)
{
myAspect->ChangeFrontMaterial().SetColor (theColor);
myAspect->SetInteriorColor (theColor);
}
if (theModel == Aspect_TOFM_BACK_SIDE
|| theModel == Aspect_TOFM_BOTH_SIDE)
{
myAspect->ChangeBackMaterial().SetColor (theColor);
myAspect->SetBackInteriorColor (theColor);
}
}
//=======================================================================
//function : Color
//purpose :
//=======================================================================
const Quantity_Color& Prs3d_ShadingAspect::Color (const Aspect_TypeOfFacingModel theModel) const
{
switch (theModel)
{
default:
case Aspect_TOFM_BOTH_SIDE:
case Aspect_TOFM_FRONT_SIDE:
return myAspect->FrontMaterial().MaterialType() == Graphic3d_MATERIAL_ASPECT
? myAspect->InteriorColor()
: myAspect->FrontMaterial().Color();
case Aspect_TOFM_BACK_SIDE:
return myAspect->BackMaterial().MaterialType() == Graphic3d_MATERIAL_ASPECT
? myAspect->BackInteriorColor()
: myAspect->BackMaterial().Color();
}
}
//=======================================================================
//function : SetMaterial
//purpose :
//=======================================================================
void Prs3d_ShadingAspect::SetMaterial (const Graphic3d_MaterialAspect& theMaterial,
const Aspect_TypeOfFacingModel theModel)
{
if (theModel != Aspect_TOFM_BOTH_SIDE)
{
myAspect->SetDistinguishOn();
}
if (theModel == Aspect_TOFM_FRONT_SIDE
|| theModel == Aspect_TOFM_BOTH_SIDE)
{
myAspect->SetFrontMaterial(theMaterial);
}
if (theModel == Aspect_TOFM_BACK_SIDE
|| theModel == Aspect_TOFM_BOTH_SIDE)
{
myAspect->SetBackMaterial (theMaterial);
}
}
//=======================================================================
//function : Material
//purpose :
//=======================================================================
const Graphic3d_MaterialAspect& Prs3d_ShadingAspect::Material (const Aspect_TypeOfFacingModel theModel) const
{
switch (theModel)
{
default:
case Aspect_TOFM_BOTH_SIDE:
case Aspect_TOFM_FRONT_SIDE:
return myAspect->FrontMaterial();
case Aspect_TOFM_BACK_SIDE:
return myAspect->BackMaterial();
}
}
//=======================================================================
//function : SetTransparency
//purpose :
//=======================================================================
void Prs3d_ShadingAspect::SetTransparency (const Standard_Real theValue,
const Aspect_TypeOfFacingModel theModel)
{
if (theModel != Aspect_TOFM_BOTH_SIDE)
{
myAspect->SetDistinguishOn();
}
if (theModel == Aspect_TOFM_FRONT_SIDE
|| theModel == Aspect_TOFM_BOTH_SIDE)
{
myAspect->ChangeFrontMaterial().SetTransparency (Standard_ShortReal(theValue));
}
if (theModel == Aspect_TOFM_BACK_SIDE
|| theModel == Aspect_TOFM_BOTH_SIDE)
{
myAspect->ChangeBackMaterial().SetTransparency (Standard_ShortReal(theValue));
}
}
//=======================================================================
//function : Transparency
//purpose :
//=======================================================================
Standard_Real Prs3d_ShadingAspect::Transparency (const Aspect_TypeOfFacingModel theModel) const
{
switch (theModel)
{
case Aspect_TOFM_BOTH_SIDE:
case Aspect_TOFM_FRONT_SIDE:
return myAspect->FrontMaterial().Transparency();
case Aspect_TOFM_BACK_SIDE:
return myAspect->BackMaterial().Transparency();
}
return 0.0;
}