整理代码

This commit is contained in:
monitor1394
2021-04-13 10:12:02 +08:00
parent 32e9ce864b
commit cbbc2a63f9
10 changed files with 5 additions and 45 deletions

View File

@@ -510,37 +510,5 @@ namespace XCharts
{
return base.GetHashCode();
}
internal virtual void SetVerticesDirty()
{
m_VertsDirty = true;
}
internal virtual void ClearVerticesDirty()
{
m_VertsDirty = false;
}
internal virtual void SetComponentDirty()
{
m_ComponentDirty = true;
}
internal virtual void ClearComponentDirty()
{
m_ComponentDirty = false;
}
public virtual void ClearDirty()
{
ClearVerticesDirty();
ClearComponentDirty();
}
public virtual void SetAllDirty()
{
SetVerticesDirty();
SetComponentDirty();
}
}
}