public bool Create(CArray4 <float> area) { this.m_area = area; this.m_center.x = (float)(((double)this.m_area.left + (double)this.m_area.right) * 0.5); this.m_center.y = (float)(((double)this.m_area.top + (double)this.m_area.bottom) * 0.5); return(this.create()); }
// Token: 0x06002098 RID: 8344 RVA: 0x0013F23C File Offset: 0x0013D43C public bool Create(CArray4 <float> area) { this.m_area = area; this.m_center.x = (this.m_area.left + this.m_area.right) * 0.5f; this.m_center.y = (this.m_area.top + this.m_area.bottom) * 0.5f; return(this.create()); }
public bool Create(CArray4 <float> area, CArray2 <float> center) { this.m_area = area; this.m_center = center; return(this.create()); }
// Token: 0x06002328 RID: 9000 RVA: 0x00148127 File Offset: 0x00146327 public bool Create(ref CArray4 <float> area) { this.m_area = area; return(this.create()); }
// Token: 0x060029F3 RID: 10739 RVA: 0x001591ED File Offset: 0x001573ED public bool Create(CArray4 <int> rect) { this.Release(); this.m_rect = rect; return(this.create()); }