Back to project page android-jplay.
The source code is released under:
Copyright (c) Nikolaj Baer All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. ...
If you think the Android project android-jplay listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.nikolajbaer.androidrender; /* w w w.jav a2s . c o m*/ /* android */ import android.graphics.Canvas; import com.nikolajbaer.render.RenderObject; import com.nikolajbaer.render.Renderable; public abstract class AndroidRenderObject extends RenderObject { protected Canvas m_canvas; protected float m_pixelsPerMeter; public void setPixelRatio(float ppm){ m_pixelsPerMeter=ppm; } public void setCanvas(Canvas c){ m_canvas=c; } }