From afdd54fa3720c267f30e48ed45c449d80449bac0 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 4 Apr 2007 13:18:41 +0000 Subject: moved source and text to american spelling * colour -> color * centre -> center * normalise -> normalize * modelling -> modeling --- source/gameengine/Ketsji/KX_VertexProxy.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/gameengine/Ketsji/KX_VertexProxy.cpp') diff --git a/source/gameengine/Ketsji/KX_VertexProxy.cpp b/source/gameengine/Ketsji/KX_VertexProxy.cpp index cacf3987e63..9c5f3f611b6 100644 --- a/source/gameengine/Ketsji/KX_VertexProxy.cpp +++ b/source/gameengine/Ketsji/KX_VertexProxy.cpp @@ -93,9 +93,9 @@ KX_VertexProxy::_getattr(const STR_String& attr) if (attr == "colour" || attr == "color") { const unsigned char *colp = m_vertex->getRGBA(); - MT_Vector4 colour(colp[0], colp[1], colp[2], colp[3]); - colour /= 255.0; - return PyObjectFrom(colour); + MT_Vector4 color(colp[0], colp[1], colp[2], colp[3]); + color /= 255.0; + return PyObjectFrom(color); } if (attr == "normal") -- cgit v1.2.3