Changed a couple of const/non-const discrpancies between header and source

for TexGen.  Removed external library dependencies in plugin makefiles
This commit is contained in:
Don BURNS
2002-11-06 18:39:32 +00:00
parent f6cbfc20bd
commit 7669b96c28
7 changed files with 19 additions and 7 deletions

View File

@@ -18,7 +18,7 @@ TexGen::~TexGen()
}
void TexGen::setPlane(const Coord which, const Vec4& plane)
void TexGen::setPlane(Coord which, const Vec4& plane)
{
switch( which )
{
@@ -31,7 +31,7 @@ void TexGen::setPlane(const Coord which, const Vec4& plane)
}
const Vec4& TexGen::getPlane(const Coord which) const
const Vec4& TexGen::getPlane(Coord which) const
{
switch( which )
{