本文介绍了如何绘制穿过三个点的曲线?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图创建一条通过Java中三个给定点的曲线(我正在通过扩展JPanel的类绘制曲线).我该怎么做?

I'm trying to create a curve that passes through three given points in Java (I'm drawing the curves through a class that extends JPanel). How can I make it?

推荐答案

圆将穿过平面上的三个点.此页面说明了几何形状: http://www.mathopenref.com/const3pointcircle.html

A circle will pass through three points on a plane. This page explains the geometery:http://www.mathopenref.com/const3pointcircle.html

这篇关于如何绘制穿过三个点的曲线?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-25 23:40