当前位置: 首页>>代码示例>>C#>>正文


C# GraphicsInterface.Color方法代码示例

本文整理汇总了C#中NewTOAPIA.GL.GraphicsInterface.Color方法的典型用法代码示例。如果您正苦于以下问题:C# GraphicsInterface.Color方法的具体用法?C# GraphicsInterface.Color怎么用?C# GraphicsInterface.Color使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在NewTOAPIA.GL.GraphicsInterface的用法示例。


在下文中一共展示了GraphicsInterface.Color方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: RenderContent

        protected override void RenderContent(GraphicsInterface gi)
        {
            int p1, p2, p3;

            for (int i = 0; i < triangles.Length; i++)
            {
                p1 = triangles[i].p1;
                p2 = triangles[i].p2;
                p3 = triangles[i].p3;

                gi.Color(1, 1, 1, 0.95f);
                gi.Drawing.Triangles.Begin();
                gi.Normal(normals[p1]);
                gi.TexCoord(uvMap[p1, 0], uvMap[p1, 1]);
                gi.Vertex(positions[p1]);

                gi.Normal(normals[p2]);
                gi.TexCoord(uvMap[p2, 0], uvMap[p2, 1]);
                gi.Vertex(positions[p2]);

                gi.Normal(normals[p3]);
                gi.TexCoord(uvMap[p3, 0], uvMap[p3, 1]);
                gi.Vertex(positions[p3]);

                gi.Drawing.Triangles.End();
            }
        }
开发者ID:Wiladams,项目名称:NewTOAPIA,代码行数:27,代码来源:ParticlesSystem.cs

示例2: Render

        public virtual void Render(GraphicsInterface gi)
        {
            gi.Color(fShaftColor);
            fAxisShaft.Render(gi);
            gi.PushMatrix();
                gi.Translate(0.0f, 0.0f, fSpearLength);
                fArrowHead.Render(gi);
                gi.Rotate(180.0f, 1.0f, 0.0f, 0.0f);
                fDisk.Render(gi);
            gi.PopMatrix();

        }
开发者ID:Wiladams,项目名称:NewTOAPIA,代码行数:12,代码来源:GLAxes.cs

示例3: RenderContent

        protected override void RenderContent(GraphicsInterface GI)
        {
            for (iStrip = -fExtent; iStrip <= fExtent; iStrip += fStep)
            {
                GI.Drawing.TriangleStrip.Begin();
                for (iRun = fExtent; iRun >= -fExtent; iRun -= fStep)
                {
                    if ((iBounce % 2) == 0)
                        fColor = 1.0f;
                    else
                        fColor = 0.0f;

                    GI.Color(fColor, fColor, fColor, 0.75f);
                    GI.Vertex(iStrip, y, iRun);
                    GI.Vertex(iStrip + fStep, y, iRun);

                    iBounce++;
                }
                GI.Drawing.TriangleStrip.End();
            }
            GI.ShadeModel(ShadingModel.Smooth);
        }
开发者ID:Wiladams,项目名称:NewTOAPIA,代码行数:22,代码来源:GroundPlane.cs

示例4: DrawTextureImageUnrotatedAndOrthographically

        public static void DrawTextureImageUnrotatedAndOrthographically(GraphicsInterface gi, int clientWidth, int clientHeight, GLTexture2D texture,
          int drawX, int drawYTextMode, // i.e., 0 == draw TOP of image at TOP of viewport, Y-axis points DOWN
          int drawWidth, int drawHeight)
        {
            // Change rendering conditions
            gi.Features.DepthTest.Disable();
            gi.Features.CullFace.Disable();

            // Preserve current matrices, and switch to an orthographic view, and 
            //   do scaling and translation as necessary.
            gi.MatrixMode(MatrixMode.Projection);
            gi.PushMatrix();
            gi.MatrixMode(MatrixMode.Modelview);
            gi.PushMatrix();


            gi.MatrixMode(MatrixMode.Projection);
            gi.LoadIdentity();
            gi.Ortho(0, (clientWidth - 1), 0, (clientHeight - 1), -1.0, 1.0);

            gi.MatrixMode(MatrixMode.Modelview);
            gi.LoadIdentity();



            if (null != texture)
            {
                // Enable texture
                texture.Bind();
            }

            // Enable blending
            gi.Features.Blend.Enable();
            gi.BlendFunc(BlendingFactorSrc.SrcAlpha, BlendingFactorDest.OneMinusSrcAlpha);


            // Draw a quad

            gi.Drawing.Quads.Begin();

            // TOP-LEFT
            gi.TexCoord(0.0f, 1.0f);
            gi.Color(ColorRGBA.White);
            gi.Vertex((drawX), ((clientHeight - 1) - drawYTextMode), 0.0f);

            // BOTTOM-LEFT
            gi.TexCoord(0.0f, 0.0f);
            gi.Color(1.0f, 1.0f, 1.0f, 1.0f);
            gi.Vertex(drawX, ((clientHeight - 1) - (drawYTextMode + drawHeight)), 0.0f);

            // BOTTOM-RIGHT
            gi.TexCoord(1.0f, 0.0f);
            gi.Color(1.0f, 1.0f, 1.0f, 1.0f);
            gi.Vertex((drawX + (drawWidth)), ((clientHeight - 1) - (drawYTextMode + drawHeight)), 0.0f);

            // TOP-RIGHT
            gi.TexCoord(1.0f, 1.0f);
            gi.Color(1.0f, 1.0f, 1.0f, 1.0f);
            gi.Vertex((drawX + (drawWidth)), ((clientHeight - 1) - drawYTextMode), 0.0f);

            gi.Drawing.Quads.End();


            // Disable blending
            gi.Features.Blend.Disable();

            if (null != texture)
            {
                // Disable texture
                gi.Features.Texturing2D.Disable();
                gi.BindTexture(TextureBindTarget.Texture2d, 0);
            }


            // Restore original matrices.
            gi.MatrixMode(MatrixMode.Modelview);
            gi.PopMatrix();
            gi.MatrixMode(MatrixMode.Projection);
            gi.PopMatrix();


            // Restore rendering conditions
            gi.FrontFace(FrontFaceDirection.Ccw); // MUST DO AFTER USING wglUseFontOutlines LISTS!!!
            gi.Features.DepthTest.Enable();
            gi.Features.CullFace.Enable();
        }
开发者ID:Wiladams,项目名称:NewTOAPIA,代码行数:86,代码来源:TextureHelper.cs

示例5: BeginRender

 protected override void BeginRender(GraphicsInterface gi)
 {
     gi.Color(fColor);
 }
开发者ID:Wiladams,项目名称:NewTOAPIA,代码行数:4,代码来源:SimpleHorizon.cs


注:本文中的NewTOAPIA.GL.GraphicsInterface.Color方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。