私信 关注
a381418754
码龄11年
  • 0
    被访问量
  • 暂无
    原创文章
  • 暂无
    作者排名
  • 0
    粉丝数量
  • 于 2010-04-05 加入CSDN
获得成就
  • 获得0次点赞
  • 内容获得0次评论
  • 获得2次收藏
荣誉勋章
  • 最近
  • 文章
  • 资源
  • 问答
  • 课程
  • 帖子
  • 收藏
  • 关注/订阅

c#绘制双曲线

c#绘制双曲线 采用双缓冲技术 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms;
rar
发布资源于 9 年前

C#绘制抛物线

C# 抛物线 public partial class Form1 : Form { Bitmap oriBmp = null; Bitmap oriBmp1 = null; Bitmap bufferBmp = null; double a, b, c; float xx, yy; public Form1() { InitializeComponent(); } //绘制坐标系 private void Form1_Load(object sender, EventArgs e) { pictureBox1.Image = new Bitmap(400, 400); Graphics g = Graphics .FromImage (pictureBox1.Image ); g.Clear(Color.White); Pen blackPen = new Pen(Color.Black, 1); g.TranslateTransform(200, 200);
rar
发布资源于 9 年前