Paints.java :  » Port » ape-physics-for-android » nl » blissfulthinking » java » android » apeforandroid » Android Open Source

Android Open Source » Port » ape physics for android 
ape physics for android » nl » blissfulthinking » java » android » apeforandroid » Paints.java
package nl.blissfulthinking.java.android.apeforandroid;

import android.graphics.Paint;

public class Paints {
  
  public static final Paint rectanglePaint = new Paint();
  
  public static final Paint circlePaint = new Paint();
  
  public static final Paint textpaint = new Paint();
  
  
  public Paints() {
  }
  
  public void init() {
    rectanglePaint.setARGB(255, 255, 75, 10);
    rectanglePaint.setStrokeWidth(2.0f);
    
    circlePaint.setARGB(255, 10, 75, 255);
    circlePaint.setStrokeWidth(1.0f);
    
    textpaint.setARGB(255, 244, 244, 244);
    textpaint.setStrokeWidth(1.0f);
  }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.