📄 rule.java
字号:
package sim.app.lsystem;import java.io.*;// This keeps track of each rule... public class Rule implements Serializable { // what to replace public byte pattern; // what to replace it with public ByteList replace; public Rule() { replace = new ByteList(); } public Rule( byte pattern, String replace) { this.pattern = pattern; this.replace = new ByteList(); Lsys.setVector( this.replace, replace); } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -