작업 조건 분석 기능 개발
This commit is contained in:
16
Assets/Chart And Graph/Script/PieChart/IPieGenerator.cs
Normal file
16
Assets/Chart And Graph/Script/PieChart/IPieGenerator.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
#define Graph_And_Chart_PRO
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace ChartAndGraph
|
||||
{
|
||||
/// <summary>
|
||||
/// base interface for pie mesh generators
|
||||
/// </summary>
|
||||
public interface IPieGenerator
|
||||
{
|
||||
void Generate(float startAngle, float angleSpan, float radius, float innerRadius, int segments, float outerDepth,float innerDepth);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user