| 5 | import {scaleFrame, scalePoint} from '../core/scaling'; |
| 6 | |
| 7 | interface FaceMapProps { |
| 8 | face: Face; |
| 9 | width: number; |
| 10 | height: number; |
| 11 | showLandmarks: boolean; |
| 12 | showContours: boolean; |
| 13 | showFrame: boolean; |
| 14 | } |
| 15 | |
| 16 | const FaceMap = ({ |
| 17 | face, |
nothing calls this directly
no outgoing calls
no test coverage detected