From: Steven Abadie Date: Wed, 15 Oct 2014 06:38:54 +0000 (-0600) Subject: First initial color changes. Still needs more work. X-Git-Tag: 14.09-1.18~115 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=7f300b0d1be1a6102b3d4fb30b9a7f192b393f83;p=cura.git First initial color changes. Still needs more work. --- diff --git a/Cura/gui/sceneView.py b/Cura/gui/sceneView.py index 436b9b19..a994c18d 100644 --- a/Cura/gui/sceneView.py +++ b/Cura/gui/sceneView.py @@ -1333,11 +1333,11 @@ class SceneView(openglGui.glGuiPanel): for n in xrange(0, len(polys[0])): if not circular: if n % 2 == 0: - glColor4ub(5, 171, 231, 96) + glColor4ub(210, 235, 103, 100) else: - glColor4ub(5, 171, 231, 64) + glColor4ub(223, 241, 145, 100) else: - glColor4ub(5, 171, 231, 96) + glColor4ub(223, 241, 145, 100) glVertex3f(polys[0][n][0], polys[0][n][1], height) glVertex3f(polys[0][n][0], polys[0][n][1], 0) @@ -1346,7 +1346,7 @@ class SceneView(openglGui.glGuiPanel): glEnd() #Draw top of build volume. - glColor4ub(5, 171, 231, 128) + glColor4ub(183, 209, 90, 100) glBegin(GL_TRIANGLE_FAN) for p in polys[0][::-1]: glVertex3f(p[0], p[1], height) @@ -1358,7 +1358,8 @@ class SceneView(openglGui.glGuiPanel): glBindTexture(GL_TEXTURE_2D, self._platformTexture) glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST) glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST) - glColor4f(1,1,1,0.5) + #Dark checkerboard color + glColor4f(1,1,1,0.7) glBindTexture(GL_TEXTURE_2D, self._platformTexture) glEnable(GL_TEXTURE_2D) glBegin(GL_TRIANGLE_FAN) diff --git a/resources/images/checkerboard.png b/resources/images/checkerboard.png index 619ac834..1a11408a 100644 Binary files a/resources/images/checkerboard.png and b/resources/images/checkerboard.png differ diff --git a/resources/images/splash.png b/resources/images/splash.png index 08aa113c..5da2bef5 100644 Binary files a/resources/images/splash.png and b/resources/images/splash.png differ