nux-1.16.0
|
00001 #include "Nux.h" 00002 #include "AbstractPaintLayer.h" 00003 00004 00005 namespace nux 00006 { 00007 AbstractPaintLayer::AbstractPaintLayer () 00008 { 00009 00010 } 00011 00012 AbstractPaintLayer::~AbstractPaintLayer () 00013 { 00014 00015 } 00016 00017 void AbstractPaintLayer::SetGeometry (const Geometry &geo) 00018 { 00019 _geometry = geo; 00020 } 00021 00022 Geometry const& AbstractPaintLayer::GetGeometry () const 00023 { 00024 return _geometry; 00025 } 00026 00027 void AbstractPaintLayer::SetModelViewMatrix (const Matrix4 &mat) 00028 { 00029 _model_view_matrix = mat; 00030 } 00031 00032 Matrix4 AbstractPaintLayer::GetModelViewMatrix () 00033 { 00034 return _model_view_matrix; 00035 } 00036 }