java applet 画正x弦线
时间: 2024-01-19 13:48:23 浏览: 79
用Java画正弦函数曲线
4星 · 用户满意度95%
以下是使用 Java Applet 画正弦曲线的示例代码:
```java
import java.awt.*;
import java.applet.*;
public class SineWave extends Applet {
public void paint(Graphics g) {
int x1, y1, x2, y2;
// 设置绘制颜色为红色
g.setColor(Color.RED);
// 设置绘制起点坐标
x1 = 0;
y1 = getHeight() / 2;
// 绘制正弦曲线
for (int i = 0; i <= getWidth(); i++) {
x2 = i;
y2 = (int) (getHeight() / 2 * (1 - Math.sin(2 * Math.PI * i / getWidth())));
g.drawLine(x1, y1, x2, y2);
x1 = x2;
y1 = y2;
}
}
}
```
在 HTML 文件中嵌入 Applet:
```html
<applet code="SineWave.class" width="400" height="300"></applet>
```
这将在网页上显示一个宽度为 400 像素,高度为 300 像素的正弦曲线。
阅读全文