您好我正在尝试实现作为 GUIelements 的子类的 RadioButtons。在绘图部分,我被要求覆盖超类的 draw 方法并绘制一个圆。它还应该在按钮的右侧绘制其文本,并且我被要求在按钮和文本之间留一个空格。我如何在这里留下一个空白。到目前为止,我能够写这个。
public class RadioButton extends GUIelements {
public RadioButton(xc,yc,radius,title,hilite,g){
super(xc,yc,radius,title,hilite,g);
}
public void draw(){
StdDraw.setPenColor(StdDraw.WHITE);
StdDraw.filledCircle(xc,yc,radius);
StdDraw.setPenColor(StdDraw.BLACK);
StdDraw.setPenRadius();
StdDraw.circle(xc,yc,radius);
StdDraw.textLeft(xc,yc,String);
}