public static System.Drawing.Bitmap DrawString(string s, Font TextFont) { return(Model3D.DrawString(s, TextFont, System.Drawing.Color.Black, System.Drawing.Color.Black, System.Drawing.Color.White, System.Drawing.Color.White)); }
public void ShowModel(Model3D myModel) { AddModel(myModel); ShowModels(); }
public static System.Drawing.Bitmap DrawString(string s, Font TextFont, System.Drawing.Color TextColor, System.Drawing.Color BackgroundColor) { return(Model3D.DrawString(s, TextFont, TextColor, TextColor, BackgroundColor, BackgroundColor)); }