c# GDI+绘制一元一次,一元二次,一元三次方程

本文介绍如何使用C#的GDI+库在WinForm应用程序中绘制一元一次、一元二次和一元三次方程的图形。尽管WinForm的GDI+绘制可能造成图像有些模糊,但通过调整可以优化图像效果。
摘要由CSDN通过智能技术生成

winform的GDI+,wpf的DirectX。2维图像处理winform自己绘制的有点模糊。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace WindowsFormsApp1
{
    public partial class Form13 : Form
    {
        private double a = 0.0004;
        private double b = 0.0002;
        private double c = 0.01;
        private double d = 2.0;
        private double m = 1;
        private double x0 = 0;

        private double fractionOne = (double)1/2;
        private double fractionTwo = (double)1/6;


        private PointF[] p = new PointF[200];
        private PointF[] X = new PointF[2];
        private PointF[] Y = new PointF[2];
        private PointF[] linearSeries = new PointF[200];
        private PointF[] quadraticSeries = new PointF[100];
        pri
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值