This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| windows = false; // show windows | |
| stuff = false; // Show bikes, table, mower | |
| l = 32; // Length of building in feet (16, 20, 24, 28, 32, ...) | |
| h = 8*12-4.5+.5; | |
| rl=6*12+1.375+.1; // cut to 73.5" long with 22.5 degree angles | |
| tl = 68.7; // Used to tweak headers on top walls | |
| // 2x6 concrete forms for foundation | |
| // 10" wide grid |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import org.eclipse.swt.SWT; | |
| import org.eclipse.swt.graphics.Color; | |
| import org.eclipse.swt.layout.FillLayout; | |
| import org.eclipse.swt.widgets.Composite; | |
| import org.eclipse.swt.widgets.Control; | |
| import org.eclipse.swt.widgets.Display; | |
| import org.eclipse.swt.widgets.Label; | |
| import org.eclipse.swt.widgets.Shell; | |
| public class Demo { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apply plugin: 'eclipse' | |
| apply plugin: 'maven' | |
| buildscript { | |
| repositories { | |
| mavenCentral() | |
| } | |
| dependencies { | |
| classpath 'org.apache.commons:commons-email:1.2' | |
| } |