• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C# RenderEventArgs类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C#中RenderEventArgs的典型用法代码示例。如果您正苦于以下问题:C# RenderEventArgs类的具体用法?C# RenderEventArgs怎么用?C# RenderEventArgs使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



RenderEventArgs类属于命名空间,在下文中一共展示了RenderEventArgs类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。

示例1: DoRender

        /// <summary>
        ///
        /// </summary>
        /// <param name="arg"></param>
        protected override void DoRender(RenderEventArgs arg)
        {
            mat4 projection = arg.Camera.GetProjectionMatrix();
            mat4 view = arg.Camera.GetViewMatrix();
            mat4 model = this.GetModelMatrix().Value;
            this.SetUniform("mvp", projection * view * model);
            if (this.textColorRecord.IsMarked())
            {
                this.SetUniform("textColor", this.textColor);
                this.textColorRecord.CancelMark();
            }
            if (this.textRecord.IsMarked())
            {
                TextModel textModel = this.textModel;
                if (textModel != null)
                {
                    textModel.SetText(this.text, this.fontTexture);
                    this.textRecord.CancelMark();
                }
            }

            blendState.On();

            base.DoRender(arg);

            blendState.Off();
        }
开发者ID:bitzhuwei,项目名称:CSharpGL,代码行数:31,代码来源:TextRenderer.DoRender.cs


示例2: renderedControl1_Rendered

        private void renderedControl1_Rendered(object sender, RenderEventArgs e)
        {
            int tickCount = Environment.TickCount;
            float deltaTime = (tickCount - _previousTickCount) / 1000f;
            _previousTickCount = tickCount;
            
            _simulator.Update(deltaTime);
            _framesCount++;
            int secondsCount = (tickCount - _startTickCount)/1000;
            if(secondsCount != 0)
                label.Text = String.Format("FPS: {0}", _framesCount / secondsCount);        

            //draw scene 
            var render = e.Render;
            render.BeginScene();

            render.Draw(() =>
                {
                    _simulator.ActorsFactory.AcceptVisit(_renderingVisitor);
                },
                Lights.Point(new Vector3(0, 5, -6), new Vector3(1, 1, 1)),
                Cameras.LookAt(new Vector3(0, 15, -30), new Vector3(0, 0, 0), new Vector3(0, 1, 0)),
                Cameras.Perspective(render.GetAspectRatio()),
                Buffers.Clear(0.2f, 0.2f, 0.4f, 1),
                Buffers.ClearDepth(),
                               Shaders.Phong
                );
            render.EndScene();
            renderedControl1.Invalidate();
        }
开发者ID:sandygk,项目名称:System.Physics,代码行数:30,代码来源:Form1.cs


示例3: DoRender

        /// <summary>
        ///
        /// </summary>
        /// <param name="arg"></param>
        protected override void DoRender(RenderEventArgs arg)
        {
            // RULE: 用于渲染UI元素的模型,其范围最好是在(-0.5, -0.5, -0.5)到(-0.5, -0.5, -0.5)之间,即保持其边长为1,且位于坐标系中心。这样,就可以用mat4 model = glm.scale(mat4.identity(), new vec3(this.Size.Width, this.Size.Height, 1));来设定其缩放比例了。简单方便。
            mat4 projection = this.GetOrthoProjection();
            //vec3 position = (this.camera.Position - this.camera.Target).normalize();
            mat4 view = glm.lookAt(new vec3(0, 0, 1), new vec3(0, 0, 0), new vec3(0, 1, 0));
            //float length = Math.Max(glText.Size.Width, glText.Size.Height) / 2;
            float length = this.Size.Height;// / 2;
            mat4 model = glm.scale(mat4.identity(), new vec3(length, length, length));
            //model = mat4.identity();
            var renderer = this.Renderer as Renderer;
            renderer.SetUniform("mvp", projection * view * model);
            if (this.textColorRecord.IsMarked())
            {
                renderer.SetUniform("textColor", this.textColor);
                this.textColorRecord.CancelMark();
            }
            if (this.textRecord.IsMarked())
            {
                TextModel textModel = this.textModel;
                if (textModel != null)
                {
                    textModel.SetText(this.text, this.fontTexture);
                    this.textRecord.CancelMark();
                }
            }

            blendState.On();

            base.DoRender(arg);

            blendState.Off();
        }
开发者ID:bitzhuwei,项目名称:CSharpGL,代码行数:37,代码来源:UIText.DoRender.cs


示例4: Render

 /// <summary>
 /// 在使用<see cref="VertexArrayObject"/>后,此方法只会执行一次。
 /// </summary>
 /// <param name="e"></param>
 /// <param name="shaderProgram"></param>
 public override void Render(RenderEventArgs e, Shaders.ShaderProgram shaderProgram)
 {
     uint location = shaderProgram.GetAttributeLocation(this.VarNameInVertexShader);
     GL.BindBuffer(BufferTarget.ArrayBuffer, this.BufferID);
     GL.VertexAttribPointer(location, this.DataSize, this.DataType, false, 0, IntPtr.Zero);
     GL.EnableVertexAttribArray(location);
 }
开发者ID:xinfushe,项目名称:CSharpGL,代码行数:12,代码来源:PropertyBufferRenderer.cs


示例5: DoRender

        protected override void DoRender(RenderEventArgs arg)
        {
            float deltaTime = (float)random.NextDouble() * 5;
            time += (float)random.NextDouble() * 5;

            IntPtr attractors = this.attractorBuffer.MapBufferRange(
                0, 64 * Marshal.SizeOf(typeof(vec4)),
                MapBufferRangeAccess.MapWriteBit | MapBufferRangeAccess.MapInvalidateBufferBit);
            unsafe
            {
                var array = (vec4*)attractors.ToPointer();
                for (int i = 0; i < 64; i++)
                {
                    array[i] = new vec4(
                        (float)(Math.Sin(time)) * 50.0f,
                        (float)(Math.Cos(time)) * 50.0f,
                        (float)(Math.Cos(time)) * (float)(Math.Sin(time)) * 5.0f,
                        ParticleModel.attractor_masses[i]);
                }
            }
            this.attractorBuffer.UnmapBuffer();

            // Activate the compute program and bind the position and velocity buffers
            computeProgram.Bind();
            OpenGL.BindImageTexture(0, this.velocityTexture.Id, 0, false, 0, OpenGL.GL_READ_WRITE, OpenGL.GL_RGBA32F);
            OpenGL.BindImageTexture(1, this.positionTexture.Id, 0, false, 0, OpenGL.GL_READ_WRITE, OpenGL.GL_RGBA32F);
            // Set delta time
            computeProgram.SetUniform("dt", deltaTime);
            // Dispatch
            OpenGL.GetDelegateFor<OpenGL.glDispatchCompute>()(ParticleModel.particleGroupCount, 1, 1);
        }
开发者ID:bitzhuwei,项目名称:CSharpGL,代码行数:31,代码来源:ParticleComputeRenderer.cs


示例6: DoRender

        protected override void DoRender(RenderEventArgs arg)
        {
            mat4 projection = arg.Camera.GetProjectionMatrix();
            mat4 view = arg.Camera.GetViewMatrix();
            mat4 inverseView = glm.inverse(view);
            //mat4 model = this.GetModelMatrix();
            this.SetUniform("u_projectionMatrix", projection);
            this.SetUniform("u_viewMatrix", view);
            this.SetUniform("u_inverseViewNormalMatrix", new mat3(new vec3(view[0]), new vec3(view[1]), new vec3(view[2])));
            this.SetUniform("u_passedTime", passedTime);
            this.SetUniform("u_waveParameters", WaterTextureRenderer.ToFloat(WaterTextureRenderer.waveParameters));
            this.SetUniform("u_waveDirections", WaterTextureRenderer.ToFloat(WaterTextureRenderer.waveDirections));

            this.cullfaceState.On();

            this.backgroundRenderer.passedTime = passedTime;
            this.backgroundRenderer.Render(arg);

            this.waterTextureRenderer.passedTime = passedTime;
            this.waterTextureRenderer.Render(arg);

            base.DoRender(arg);

            this.cullfaceState.Off();

            passedTime += deltaTime;
        }
开发者ID:bitzhuwei,项目名称:CSharpGL,代码行数:27,代码来源:WaterRenderer.DoRenderer.cs


示例7: Search

        /// <summary>
        /// 在三角形图元中拾取指定位置的Line
        /// </summary>
        /// <param name="arg">渲染参数</param>
        /// <param name="x">mouse position(Left Down is (0, 0)).</param>
        /// <param name="y">mouse position(Left Down is (0, 0)).</param>
        /// <param name="lastVertexId">三角形图元的最后一个顶点</param>
        /// <param name="modernRenderer">目标Renderer</param>
        /// <returns></returns>
        internal override uint[] Search(RenderEventArgs arg,
            int x, int y,
            uint lastVertexId, ZeroIndexRenderer modernRenderer)
        {
            // 创建临时索引
            OneIndexBuffer buffer = Buffer.Create(IndexBufferElementType.UInt, 6, DrawMode.Lines, BufferUsage.StaticDraw);
            unsafe
            {
                var array = (uint*)buffer.MapBuffer(MapBufferAccess.WriteOnly);
                array[0] = lastVertexId - 1; array[1] = lastVertexId - 0;
                array[2] = lastVertexId - 2; array[3] = lastVertexId - 1;
                array[4] = lastVertexId - 0; array[5] = lastVertexId - 2;
                buffer.UnmapBuffer();
            }
            // 用临时索引渲染此三角形图元(仅渲染此三角形图元)
            modernRenderer.Render4InnerPicking(arg, buffer);
            // id是拾取到的Line的Last Vertex Id
            uint id = ColorCodedPicking.ReadStageVertexId(x, y);

            buffer.Dispose();

            // 对比临时索引,找到那个Line
            if (id + 2 == lastVertexId)
            { return new uint[] { id + 2, id, }; }
            else
            { return new uint[] { id - 1, id, }; }
        }
开发者ID:bitzhuwei,项目名称:CSharpGL,代码行数:36,代码来源:ZeroIndexLineInTrianglesSearcher.cs


示例8: DoRender

        protected override void DoRender(RenderEventArgs e)
        {
            GL.BindTexture(GL.GL_TEXTURE_3D, this.textureName[0]);
            GL.ActiveTexture(GL.GL_TEXTURE0);

            //GL.Color(1f, 1f, 1f, 1f);

            GL.Begin(PrimitiveModes.QuadStrip);
            {
                GL.Vertex(this.positiveX, this.positiveY, this.positiveZ);
                GL.TexCoord3f(this.positiveTexX, this.positiveTexY, this.positiveTexZ);
                GL.Vertex(this.positiveX, this.positiveY, this.negativeZ);
                GL.TexCoord3f(this.positiveTexX, this.positiveTexY, this.negativeTexZ);
                GL.Vertex(this.negativeX, this.positiveY, this.positiveZ);
                GL.TexCoord3f(this.negativeTexX, this.positiveTexY, this.positiveTexZ);
                GL.Vertex(this.negativeX, this.positiveY, this.negativeZ);
                GL.TexCoord3f(this.negativeTexX, this.positiveTexY, this.negativeTexZ);
                GL.Vertex(this.negativeX, this.negativeY, this.positiveZ);
                GL.TexCoord3f(this.negativeTexX, this.negativeTexY, this.positiveTexZ);
                GL.Vertex(this.negativeX, this.negativeY, this.negativeZ);
                GL.TexCoord3f(this.negativeTexX, this.negativeTexY, this.negativeTexZ);
                GL.Vertex(this.positiveX, this.negativeY, this.positiveZ);
                GL.TexCoord3f(this.positiveTexX, this.negativeTexY, this.positiveTexZ);
                GL.Vertex(this.positiveX, this.negativeY, this.negativeZ);
                GL.TexCoord3f(this.positiveTexX, this.negativeTexY, this.negativeTexZ);
            }
            GL.End();

            GL.BindTexture(GL.GL_TEXTURE_3D, 0);
        }
开发者ID:JanneLee,项目名称:CSharpGL,代码行数:30,代码来源:DemoLegacyTexture3DCubeElement.cs


示例9: DoRender

        /// <summary>
        ///
        /// </summary>
        /// <param name="arg"></param>
        protected override void DoRender(RenderEventArgs arg)
        {
            this.SetUniform("billboardCenter_worldspace", this.WorldPosition);

            if (labelHeightRecord.IsMarked())
            {
                this.SetUniform("labelHeight", this.LabelHeight);
                labelHeightRecord.CancelMark();
            }
            if (textRecord.IsMarked())
            {
                if (this.DataSource != null)
                {
                    (this.DataSource as TextModel).SetText(this.text, this.fontTexture);
                }
            }
            if (discardTransparencyRecord.IsMarked())
            {
                bool discard = this.DiscardTransparency;
                this.SetUniform("discardTransparency", discard);
                this.blendState.Enabled = discard;
                discardTransparencyRecord.CancelMark();
            }
            int[] viewport = OpenGL.GetViewport();
            this.SetUniform("viewportSize", new vec2(viewport[2], viewport[3]));
            mat4 projection = arg.Camera.GetProjectionMatrix();
            mat4 view = arg.Camera.GetViewMatrix();
            this.SetUniform("projection", projection);
            this.SetUniform("view", view);

            base.DoRender(arg);
        }
开发者ID:bitzhuwei,项目名称:CSharpGL,代码行数:36,代码来源:LabelRenderer.DoRender.cs


示例10: OnRender

        protected internal override void OnRender(RenderEventArgs e)
        {
            base.OnRender(e);

            e.Canvas.FillRectangle(0, 0, Size.Width, Size.Height, mvarBackgroundColor);

            #region Left Arrow
            e.Canvas.FillRectangle(0, 0, 8, Size.Height - 1, Colors.LightGray);
            e.Canvas.Color = Colors.Black;
            e.Canvas.DrawRectangle(0, 0, 8, Size.Height - 1);

            e.Canvas.DrawLine(8 - 1, 4, 0, Size.Height / 2);
            e.Canvas.DrawLine(8, Size.Height - 4, 0, Size.Height / 2);
            #endregion
            #region Thumb
            double thw = 9;
            double thx = (this.Size.Width * ((this.Value - this.Minimum) / (this.Maximum - this.Minimum))) - (thw * 2), thy = 0;
            e.Canvas.FillRectangle(9 + thx, thy, Size.Height - 1, Size.Height - 1, Colors.LightGray);
            e.Canvas.Color = Colors.Black;
            e.Canvas.DrawRectangle(9 + thx, thy, Size.Height - 1, Size.Height - 1);

            e.Canvas.Translate(0, 14);
            e.Canvas.DrawText("#", 9 + thx + 5, thy);
            e.Canvas.Translate(0, -14);
            #endregion
            #region Right Arrow
            e.Canvas.FillRectangle(Size.Width - 8, 0, 8, Size.Height - 1, Colors.LightGray);
            e.Canvas.Color = Colors.Black;
            e.Canvas.DrawRectangle(Size.Width - 8, 0, 8, Size.Height - 1);

            e.Canvas.DrawLine(Size.Width - 8 - 1, 4, Size.Width - 1, Size.Height / 2);
            e.Canvas.DrawLine(Size.Width - 8, Size.Height - 4, Size.Width - 1, Size.Height / 2);
            #endregion
        }
开发者ID:Narinyir,项目名称:Sanjigen,代码行数:34,代码来源:ScrollBar.cs


示例11: DoRender

        protected override void DoRender(RenderEventArgs arg)
        {
            mat4 projection = arg.Camera.GetProjectionMatrix();
            mat4 view = arg.Camera.GetViewMatrix();
            mat4 model = this.GetModelMatrix().Value;
            this.SetUniform("mvp", projection * view * model);

            base.DoRender(arg);
        }
开发者ID:bitzhuwei,项目名称:CSharpGL,代码行数:9,代码来源:ZeroAttributeRenderer.cs


示例12: DoRender

        protected override void DoRender(RenderEventArgs arg)
        {
            mat4 model = mat4.identity();
            mat4 view = arg.Camera.GetViewMat4();
            mat4 projection = arg.Camera.GetProjectionMat4();
            this.SetUniform("mvp", projection * view * model);

            base.DoRender(arg);
        }
开发者ID:xzoth,项目名称:CSharpGL,代码行数:9,代码来源:AnalyzedPointSpriteRenderer.cs


示例13: glCanvas1_OpenGLDraw

        void glCanvas1_OpenGLDraw(object sender, PaintEventArgs e)
        {
            GL.ClearColor(0x87 / 255.0f, 0xce / 255.0f, 0xeb / 255.0f, 0xff / 255.0f);
            GL.Clear(GL.GL_COLOR_BUFFER_BIT | GL.GL_DEPTH_BUFFER_BIT);

            var arg = new RenderEventArgs(RenderModes.Render, this.camera);
            element.Render(arg);
            uiAxis.Render(arg);
        }
开发者ID:xinfushe,项目名称:CSharpGL,代码行数:9,代码来源:FormLoadTexture.cs


示例14: RenderedControl1InitializeRender

        private void RenderedControl1InitializeRender(object sender, RenderEventArgs e)
        {
            _boxModel = Models.Cube.Translated(-0.5f, -0.5f, -0.5f).Scaled(1, 1, 1).Allocate(e.Render);
            _planeModel = Models.PlaneXZ.Scaled(10, 5, 5).Allocate(e.Render);

            SetupSimulation();

            //initializing the timer
            _startTickCount = Environment.TickCount;
        }
开发者ID:sandygk,项目名称:System.Physics,代码行数:10,代码来源:Form1.cs


示例15: DoRender

        protected override void DoRender(RenderEventArgs arg)
        {
            mat4 projection = arg.Camera.GetProjectionMatrix();
            mat4 view = arg.Camera.GetViewMatrix();
            //mat4 model = this.GetModelMatrix();
            this.SetUniform("u_projectionMatrix", projection);
            this.SetUniform("u_modelViewMatrix", view);

            base.DoRender(arg);
        }
开发者ID:bitzhuwei,项目名称:CSharpGL,代码行数:10,代码来源:WaterBackgroundRenderer.DoRenderer.cs


示例16: DoRender

 protected override void DoRender(RenderEventArgs arg)
 {
     mat4 projection = arg.Camera.GetProjectionMatrix();
     mat4 view = arg.Camera.GetViewMatrix();
     mat4 model = glm.scale(mat4.identity(), this.Scale);
     this.SetUniform("projectionMatrix", projection);
     this.SetUniform("viewMatrix", view);
     this.SetUniform("modelMatrix", model);
     this.SetUniform("lineColor", this.LineColor.ToVec3());
     base.DoRender(arg);
 }
开发者ID:bitzhuwei,项目名称:CSharpGL,代码行数:11,代码来源:GroundRenderer.cs


示例17: connector_BeforeOutput

 void connector_BeforeOutput(object sender, RenderEventArgs e)
 {
     if (this.Connector.Request.RequestType == DataRequestType.Edit)
     {
         //create new action
         DataAction customAction = new DataAction("sayHello", "", null, null, null, null);
         customAction.Details = "Hello, World!";
         //add it to actions collection and send to the client
         this.Connector.Request.DataActions.Add(customAction);
     }
 }
开发者ID:williams55,项目名称:clinic-doctor,代码行数:11,代码来源:customActions.ashx.cs


示例18: DoRender

 /// <summary>
 ///
 /// </summary>
 /// <param name="arg"></param>
 protected override void DoRender(RenderEventArgs arg)
 {
     if (arg.PickingGeometryType == PickingGeometryType.None)
     {
         base.DoRender(arg);
     }
     else
     {
         this.innerPickableRenderer.Render(arg);
     }
 }
开发者ID:bitzhuwei,项目名称:CSharpGL,代码行数:15,代码来源:PickableRenderer.DoRender.cs


示例19: renderedControl1_InitializeRender

        private void renderedControl1_InitializeRender(object sender, RenderEventArgs e)
        {
            _boxModel = Models.Cube.Translated(-0.5f, -0.5f, -0.5f).Scaled(1, 1, 1).Allocate(e.Render);
            _planeModel = Models.PlaneXZ.Scaled(1, 1, 1);

            DigitalRuneAdaptorScene();

            //initializing the timer
            _previousTickCount = Environment.TickCount;
            _startTickCount = _previousTickCount;
        }
开发者ID:sandygk,项目名称:System.Physics,代码行数:11,代码来源:Form1.cs


示例20: DoRender

        protected override void DoRender(RenderEventArgs e)
        {
            // 去掉Camera,UI就不会旋转。
            RenderEventArgs barArg = new RenderEventArgs(e.RenderMode, null);
            this.bar.Render(barArg);

            foreach (var item in this.numbers)
            {
                item.Render(barArg);
            }
        }
开发者ID:xinfushe,项目名称:CSharpGL,代码行数:11,代码来源:SimpleUIColorIndicator.cs



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# RenderFlags类代码示例发布时间:2022-05-24
下一篇:
C# RenderDrawContext类代码示例发布时间:2022-05-24
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap