用C#開發opengl

來源:互聯網
上載者:User
微軟提供較少的標準支援,對於和他們競爭的東西—比如CORBA(COM的競爭者)和OpenGL(DirectX的競爭者)。
不過在C#中實現Opengl也並非沒有可能,有很多很好的第3方庫可以使用,這裡列舉2個。
(1)CsGL
http://csgl.sourceforge.net/index.html
名氣較大的opengl庫,有穩定版本。sf上的項目地址http://sourceforge.net/project/showfiles.php?group_id=33241。
目前有多個3D引擎項目使用的這個庫。

(2)CSopenGL
http://www.ia.hiof.no/gb/ptools/csharp/p-csharp.html
有較詳細的文檔和例子。sf上的項目地址http://sourceforge.net/project/showfiles.php?group_id=54966&package_id=49782。

CSopenGL的一個例子(我在VS2005上編譯)
-------form1.cs-------
#region Using directives

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using CSOpenGL;
#endregion

namespace opentest
{
partial class Form1 : System.Windows.Forms.Form
{
//private System.ComponentModel.Container components = null;
private GLView view;

public Form1()
{
InitializeComponent();

view = new GLView();
view.Parent = this;
view.CreateControl();
view.Dock = DockStyle.Fill;
view._OnPaint = new Painter();

}

/*
protected override void Dispose(bool disposing)
{
if (disposing)
{
if (components != null)
{
components.Dispose();
}
view.Dispose();
}
base.Dispose(disposing);
}
*/

private void Form1_Load(object sender, EventArgs e)
{

}

}


public class Painter : GLViewPainter
{
public Painter() { }

public override void Paint(GLView view)
{
glViewport(0, 0, view.Width, view.Height);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
gluPerspective(45.0f, 1.0f, 0.1f, 100.0f);
glShadeModel(GL_SMOOTH);

glClearColor(0.0f, 0.0f, 0.0f, 0.0f);
glClearDepth(1.0f);
glEnable(GL_DEPTH_TEST);
glDepthFunc(GL_LEQUAL);
glHint(GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST);

glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glMatrixMode(GL_MODELVIEW);
//drawPyramid();
//drawSphere();
drawCube();
glFlush();
}

private void drawPyramid()
{
glLoadIdentity();
glTranslatef(-0.2f, 0.3f, -4.0f);
glRotatef(45.0f, 1.0f, 1.0f, 1.0f);

glBegin(GL_TRIANGLES);

// front face triangle:
glColor3f(1.0f, 0.0f, 0.0f);
glVertex3f(0.0f, 1.0f, 0.0f);
glColor3f(0.0f, 1.0f, 0.0f);
glVertex3f(-1.0f, -1.0f, 1.0f);
glColor3f(0.0f, 0.0f, 1.0f);
glVertex3f(1.0f, -1.0f, 1.0f);

// right face triangle:
glColor3f(1.0f, 0.0f, 0.0f);
glVertex3f(0.0f, 1.0f, 0.0f);
glColor3f(0.0f, 0.0f, 1.0f);
glVertex3f(1.0f, -1.0f, 1.0f);
glColor3f(0.0f, 1.0f, 0.0f);
glVertex3f(1.0f, -1.0f, -1.0f);

//back face triangle:
glColor3f(1.0f, 0.0f, 0.0f);
glVertex3f(0.0f, 1.0f, 0.0f);
glColor3f(0.0f, 1.0f, 0.0f);
glVertex3f(1.0f, -1.0f, -1.0f);
glColor3f(0.0f, 0.0f, 1.0f);
glVertex3f(-1.0f, -1.0f, -1.0f);

// left face triangle:
glColor3f(1.0f, 0.0f, 0.0f);
glVertex3f(0.0f, 1.0f, 0.0f);
glColor3f(0.0f, 0.0f, 1.0f);
glVertex3f(-1.0f, -1.0f, -1.0f);
glColor3f(0.0f, 1.0f, 0.0f);
glVertex3f(-1.0f, -1.0f, 1.0f);

glEnd();
}

private void drawCube()
{
// enable color blending:
glEnable(GL_BLEND);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
glLoadIdentity();

glTranslatef(0.0f, 0.2f, -6.0f);
glRotatef(45.0f, 1.0f, 1.0f, 1.0f);

glBegin(GL_QUADS);
// tegner først de sidene som ikke skal være gjennomsiktige:
//the back:
glColor4f(1.0f, 1.0f, 0.0f, 1.0f); // yellow
glVertex3f(1.0f, -1.0f, -1.0f);
glVertex3f(-1.0f, -1.0f, -1.0f);
glVertex3f(-1.0f, 1.0f, -1.0f);
glVertex3f(1.0f, 1.0f, -1.0f);

//the bottom:
glColor4f(1.0f, 0.5f, 0.0f, 1.0f); // orange
glVertex3f(1.0f, -1.0f, 1.0f);
glVertex3f(-1.0f, -1.0f, 1.0f);
glVertex3f(-1.0f, -1.0f, -1.0f);
glVertex3f(1.0f, -1.0f, -1.0f);

//the right face:
glColor4f(1.0f, 0.0f, 1.0f, 0.75f); // cyan
glVertex3f(1.0f, 1.0f, -1.0f);
glVertex3f(1.0f, 1.0f, 1.0f);
glVertex3f(1.0f, -1.0f, 1.0f);
glVertex3f(1.0f, -1.0f, -1.0f);

// de sidene som skal være gjennomsiktige:
// setter DepthBuffer read-only:
glDepthMask(0);
//the front:
glColor4f(1.0f, 0.0f, 0.0f, 0.75f); // red
glVertex3f(1.0f, 1.0f, 1.0f);
glVertex3f(-1.0f, 1.0f, 1.0f);
glVertex3f(-1.0f, -1.0f, 1.0f);
glVertex3f(1.0f, -1.0f, 1.0f);

//the top:
glColor4f(0.0f, 1.0f, 0.0f, 0.75f); // green
glVertex3f(1.0f, 1.0f, -1.0f);
glVertex3f(-1.0f, 1.0f, -1.0f);
glVertex3f(-1.0f, 1.0f, 1.0f);
glVertex3f(1.0f, 1.0f, 1.0f);

//the left face:
glColor4f(0.0f, 0.0f, 1.0f, 0.75f); // blue
glVertex3f(-1.0f, 1.0f, 1.0f);
glVertex3f(-1.0f, 1.0f, -1.0f);
glVertex3f(-1.0f, -1.0f, -1.0f);
glVertex3f(-1.0f, -1.0f, 1.0f);
glEnd();

glDepthMask(1);
glDisable(GL_BLEND);
}

private void drawSphere()
{
float[] ambient = { 1.0f, 1.0f, 0.0f, 1.0f };
float[] diffuse = { 1.0f, 1.0f, 0.0f, 1.0f };
float[] specular = { 1.0f, 1.0f, 1.0f, 1.0f };
float[] position = { 4.0f, 0.0f, 6.0f, 0.0f };

glLightfv(GL_LIGHT0, GL_AMBIENT, ambient);
glLightfv(GL_LIGHT0, GL_DIFFUSE, diffuse);
glLightfv(GL_LIGHT0, GL_SPECULAR, specular);
glLightfv(GL_LIGHT0, GL_POSITION, position);
glEnable(GL_LIGHT0);
glEnable(GL_LIGHTING);

gluLookAt(-4.0, -5.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0);

IntPtr hdc = gluNewQuadric();
gluSphere(hdc, 2.0, 40, 40);
gluDeleteQuadric(hdc);
}
}

}

-------------program.cs--------------
#region Using directives

using System;
using System.Collections.Generic;
using System.Windows.Forms;

#endregion

namespace opentest
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.EnableRTLMirroring();
Application.Run(new Form1());
}
}
}




相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.