集成算法seetaface6

This commit is contained in:
dengwenjie
2025-03-26 17:09:22 +08:00
parent 45cb7a9edc
commit 72a4c2c058
78 changed files with 1843 additions and 264 deletions

View File

@@ -0,0 +1,18 @@
package com.seetaface.model;
/**
* SeetaPointF
* @author dwj
*/
public class SeetaPointF {
public double x;
public double y;
@Override
public String toString() {
return "{" +
"x=" + x +
", y=" + y +
'}';
}
}