?? centroid.java
字號:
package kc.test.fuzzy;
import java.awt.*;
/**
* @author Thomas Neidhart, thomas.neidhart@gmail.com, all rights by Know-Center
* Date: Aug 3, 2005
*
* Represents a cluster centroid
*/
public class Centroid extends Point
{
/**
* Create a new centroid object
* @param x the position on the x-axis
* @param c the color
*/
public Centroid(int x, Color c) {
super(x, c);
}
/**
* Create a cloned center object
* @return the cloned centroid
*/
public Centroid clone() {
Centroid c = null;
c = (Centroid) super.clone();
return c;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -