TechEngine.Engine.FrameBuffer.DrawPixel C# (CSharp) Method

DrawPixel() public method

Draws a pixel to the framebuffer
public DrawPixel ( Vector3 point, int color ) : void
point Vector3
color int
return void
        public void DrawPixel(Vector3 point, int color)
        {
            DrawPixel((int)point.X, (int)point.Y, color);
        }

Same methods

FrameBuffer::DrawPixel ( int x, int y, int color ) : void