Пример #1
0
 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();
 }
Пример #3
0
 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));
 }