Hallo @all,
Hier mal eine Code stück das mal mit .Net zu tun hat

Un zwar kann man mit meiner Methode einen 3D Grid zeichnen, dies verwende ich auch in
unseren RPG Editor. Das 3D Grid ist schwarz - kann man aber leicht ändern zusätzlich wird ein
Roter und einer Blauer Strich gezogen dies soll helfen um die Achsen X und Z zu unterscheiden.
Wichtig:
Ich werde zwei Codestücke mit zwei Möglichkeiten hier
her schreiben also bitte nicht verwechseln 
Und noch etwas... hier die definierten variablen.
IDevice =
IrrlichtDeviceSManager =
SceneManagerVDriver =
VideoDriverund so wird es Später aussehen.
Möglichkeit 1 (Empfohlen)(Beginner)Fügt am besten in eurer "While" schleife, zwischen "SManager.DrawAll();" und "VDriver.EndScene();"
folgenden Code stück ein.
Code:
while (IDevice.Run())
{
VDriver.BeginScene(true, true, new IrrlichtNETCP.Color());
SManager.DrawAll();
int PositionAnfang1 = 0;
int PositionAnfang2 = 0;
int PositionAnfang3 = 0;
int PositionAnfang4 = 0;
for (int IntAnzahl = 1; IntAnzahl < 30; IntAnzahl++)
{
// Linien zeichnen
VDriver.Draw3DLine(new Line3D(new Vector3D(PositionAnfang1, 0, 0), new Vector3D(PositionAnfang1, 0, 1400)), IrrlichtNETCP.Color.TransparentBlack);
VDriver.Draw3DLine(new Line3D(new Vector3D(0, 0, PositionAnfang1), new Vector3D(1400, 0, PositionAnfang1)), IrrlichtNETCP.Color.TransparentBlack);
PositionAnfang1 += 50;
// Linien zeichnen
VDriver.Draw3DLine(new Line3D(new Vector3D(PositionAnfang2, 0, 0), new Vector3D(PositionAnfang2, 0, -1400)), IrrlichtNETCP.Color.TransparentBlack);
VDriver.Draw3DLine(new Line3D(new Vector3D(0, 0, PositionAnfang2), new Vector3D(-1400, 0, PositionAnfang2)), IrrlichtNETCP.Color.TransparentBlack);
PositionAnfang2 -= 50;
// Linien zeichnen
VDriver.Draw3DLine(new Line3D(new Vector3D(PositionAnfang3, 0, 0), new Vector3D(PositionAnfang3, 0, -1400)), IrrlichtNETCP.Color.TransparentBlack);
VDriver.Draw3DLine(new Line3D(new Vector3D(0, 0, PositionAnfang3), new Vector3D(-1400, 0, PositionAnfang3)), IrrlichtNETCP.Color.TransparentBlack);
PositionAnfang3 += 50;
// Linien zeichnen
VDriver.Draw3DLine(new Line3D(new Vector3D(PositionAnfang4, 0, 0), new Vector3D(PositionAnfang4, 0, 1400)), IrrlichtNETCP.Color.TransparentBlack);
VDriver.Draw3DLine(new Line3D(new Vector3D(0, 0, PositionAnfang4), new Vector3D(1400, 0, PositionAnfang4)), IrrlichtNETCP.Color.TransparentBlack);
PositionAnfang4 -= 50;
}
VDriver.Draw3DLine(new Line3D(new Vector3D(0, 0, 0), new Vector3D(0, 0, 1400)), IrrlichtNETCP.Color.Blue);
VDriver.Draw3DLine(new Line3D(new Vector3D(0, 0, 0), new Vector3D(0, 0, -1400)), IrrlichtNETCP.Color.Blue);
VDriver.Draw3DLine(new Line3D(new Vector3D(0, 0, 0), new Vector3D(1400, 0, 0)), IrrlichtNETCP.Color.TransparentRed);
VDriver.Draw3DLine(new Line3D(new Vector3D(0, 0, 0), new Vector3D(-1400, 0, 0)), IrrlichtNETCP.Color.TransparentRed);
VDriver.EndScene();
}
Möglichkeit 2 (Für erfahrene Programmierer)Dieser abschnitt ist für erfahrene Programmierer, weil: Die Programmierer die Methode für
sich aufbauen können, bzw. auch mit weiteren variablen zu bestücken. Der folgende Code abschnitt
wird als Methode verwendet.
Code:
#region Create3DGrid
/// <summary>
/// Erstellt einen 3D Grid
/// </summary>
public void Create3DGrid()
{
int PositionAnfang1 = 0;
int PositionAnfang2 = 0;
int PositionAnfang3 = 0;
int PositionAnfang4 = 0;
for (int IntAnzahl = 1; IntAnzahl < 30; IntAnzahl++)
{
// Linien zeichnen
VDriver.Draw3DLine(new Line3D(new Vector3D(PositionAnfang1, 0, 0), new Vector3D(PositionAnfang1, 0, 1400)), IrrlichtNETCP.Color.TransparentBlack);
VDriver.Draw3DLine(new Line3D(new Vector3D(0, 0, PositionAnfang1), new Vector3D(1400, 0, PositionAnfang1)), IrrlichtNETCP.Color.TransparentBlack);
PositionAnfang1 += 50;
// Linien zeichnen
VDriver.Draw3DLine(new Line3D(new Vector3D(PositionAnfang2, 0, 0), new Vector3D(PositionAnfang2, 0, -1400)), IrrlichtNETCP.Color.TransparentBlack);
VDriver.Draw3DLine(new Line3D(new Vector3D(0, 0, PositionAnfang2), new Vector3D(-1400, 0, PositionAnfang2)), IrrlichtNETCP.Color.TransparentBlack);
PositionAnfang2 -= 50;
// Linien zeichnen
VDriver.Draw3DLine(new Line3D(new Vector3D(PositionAnfang3, 0, 0), new Vector3D(PositionAnfang3, 0, -1400)), IrrlichtNETCP.Color.TransparentBlack);
VDriver.Draw3DLine(new Line3D(new Vector3D(0, 0, PositionAnfang3), new Vector3D(-1400, 0, PositionAnfang3)), IrrlichtNETCP.Color.TransparentBlack);
PositionAnfang3 += 50;
// Linien zeichnen
VDriver.Draw3DLine(new Line3D(new Vector3D(PositionAnfang4, 0, 0), new Vector3D(PositionAnfang4, 0, 1400)), IrrlichtNETCP.Color.TransparentBlack);
VDriver.Draw3DLine(new Line3D(new Vector3D(0, 0, PositionAnfang4), new Vector3D(1400, 0, PositionAnfang4)), IrrlichtNETCP.Color.TransparentBlack);
PositionAnfang4 -= 50;
}
VDriver.Draw3DLine(new Line3D(new Vector3D(0, 0, 0), new Vector3D(0, 0, 1400)), IrrlichtNETCP.Color.Blue);
VDriver.Draw3DLine(new Line3D(new Vector3D(0, 0, 0), new Vector3D(0, 0, -1400)), IrrlichtNETCP.Color.Blue);
VDriver.Draw3DLine(new Line3D(new Vector3D(0, 0, 0), new Vector3D(1400, 0, 0)), IrrlichtNETCP.Color.TransparentRed);
VDriver.Draw3DLine(new Line3D(new Vector3D(0, 0, 0), new Vector3D(-1400, 0, 0)), IrrlichtNETCP.Color.TransparentRed);
}
#endregion Create3DGrid
Hoffe ihr könnt den Code irgendwie gebrauchen

Mit freundlichen grüßen Azim