예제 #1
0
파일: view.cpp 프로젝트: hackborn/gifbox
View& View::setScale(const glm::vec3 &v) {
	onSetScale(v);
	return *this;
}
예제 #2
0
//--------------------------------------------------------------
void LayerTransform::setScaleZ(float z) {scale.z = z; onSetScale();}
예제 #3
0
//--------------------------------------------------------------
void LayerTransform::setScaleX(float x) {scale.x = x; onSetScale();}
예제 #4
0
//--------------------------------------------------------------
void LayerTransform::setScaleY(float y) {scale.y = y; onSetScale();}
예제 #5
0
//--------------------------------------------------------------
void LayerTransform::setScale(const ofPoint& p) {scale.set(p.x, p.y, p.z);onSetScale();}