25 lines
766 B
Plaintext
25 lines
766 B
Plaintext
// Filename: directionalLight.I
|
|
// Created by: mike (04Feb99)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: DirectionalLight::get_specular
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE Colorf DirectionalLight::get_specular( void ) const
|
|
{
|
|
return _specular;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: DirectionalLight::set_specular
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE void DirectionalLight::set_specular( const Colorf& color )
|
|
{
|
|
_specular = color;
|
|
}
|