我正在使用NetBeans8 IDE。
Here is a fiddle by a programmer.
在这里,他使用...
int i;
char *buff[30000];
for( i = 0; i < 30000; i++ ) {
buff[i] = malloc(10000000);
strcpy( buff[i], "Some String");
puts(buff[i]);
}
...
创建一个带有框的正弦波运动。经过长时间的搜索,我得到了SINE波的等式。但我尝试了很多,但我无法得到任何结果。
y = sin(kx - ωt)
我的问题是,
如何使用像javascript
jcomponent
创建此类行波效果
或
我们如何使用以下公式创建JRadiobutton
和x
坐标 - ThisPHYSCLIPS Webpage
请帮我解决这个问题。提前谢谢。
这是我的代码
y
但我的Timer t = new Timer(10, new ActionListener() { // |
// |
@Override // |
public void actionPerformed(ActionEvent e) {
int xnow=AL1.getX()+1;
int ynow=AL1.getY();
ynow=(int) (ynow+Math.sin(2*Math.PI*(xnow/50))*10);
AL1.setLocation(xnow, ynow);
} // |
});
private void formWindowOpened(java.awt.event.WindowEvent evt) {
// TODO add your handling code here:
AL1.setLocation(0, 200);
t.start();
}
正在某些地方......