2022-05-08 12:28:50 -07:00

16 lines
698 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace View_by_Distance.Shared.Models.Stateless.Methods;
public interface IFace
{ // ...
double TestStatic_Getα(int x1, int x2, int y1, int y2);
string TestStatic_GetJson(string jsonFileFullName);
Models.Face TestStatic_GetFace(string jsonFileFullName);
Models.Face[] TestStatic_GetFaces(string jsonFileFullName);
static double Getα(int x1, int x2, int y1, int y2) => Face.Getα(x1, x2, y1, y2);
static string GetJson(string jsonFileFullName) => Face.GetJson(jsonFileFullName);
static Models.Face GetFace(string jsonFileFullName) => Face.GetFace(jsonFileFullName);
static Models.Face[] GetFaces(string jsonFileFullName) => Face.GetFaces(jsonFileFullName);
}