Added BlenColour(Vec4) constructor and updated wrappers.

This commit is contained in:
Robert Osfield
2006-02-09 12:20:42 +00:00
parent 8f7d349f7e
commit 59ad441be1
5 changed files with 23 additions and 2 deletions

View File

@@ -20,7 +20,12 @@ using namespace osg;
BlendColor::BlendColor() :
_constantColor(0.0f,0.0f,0.0f,0.0f)
_constantColor(0.0f,0.0f,0.0f,0.0f)
{
}
BlendColor::BlendColor(const osg::Vec4& constantColor):
_constantColor(constantColor)
{
}