📄
src/Integrations/FaceCamera/FaceDetection.cs
using System.Runtime.InteropServices; namespace MMirror.Integrations.FaceCamera; [StructLayout(LayoutKind.Sequential)] public readonly record struct FaceDetection( float X, float Y, float Width, float Height, float LeftEyeX, float LeftEyeY, float RightEyeX, float RightEyeY, float NoseX, float NoseY, float LeftMouthCornerX, float LeftMouthCornerY, float RightMouthCornerX, float RightMouthCornerY );