Пример #1
0
 public void Scissor(int xOffset, int yOffset, int xWidth, int yHeight)
 {
     this.m_Relative    = true;
     this.m_Clip        = true;
     this.m_Clipper     = null;
     this.m_xClipOffset = xOffset;
     this.m_yClipOffset = yOffset;
     this.m_xClipWidth  = xWidth;
     this.m_yClipHeight = yHeight;
 }
Пример #2
0
 public void Scissor(int xOffset, int yOffset, int xWidth, int yHeight)
 {
     this.m_Relative = true;
     this.m_Clip = true;
     this.m_Clipper = null;
     this.m_xClipOffset = xOffset;
     this.m_yClipOffset = yOffset;
     this.m_xClipWidth = xWidth;
     this.m_yClipHeight = yHeight;
 }
Пример #3
0
 public void Scissor(Client.Clipper Clipper)
 {
     this.m_Relative = false;
     this.m_Clip     = Clipper != null;
     this.m_Clipper  = Clipper;
 }
Пример #4
0
 public void Scissor(Client.Clipper Clipper)
 {
     this.m_Relative = false;
     this.m_Clip = Clipper != null;
     this.m_Clipper = Clipper;
 }