(self, uv: Tensor)
| 267 | return sdf, delta, normal, offset, face_index, on_skeleton, uv, unbounded_uv, tangents, normal_c, thickness, is_edge, is_corner |
| 268 | |
| 269 | def thickness_at(self, uv: Tensor): |
| 270 | if not spatial(self.thickness): |
| 271 | return self.thickness |
| 272 | return math.grid_sample(self.thickness, uv, ZERO_GRADIENT) |
| 273 | |
| 274 | def center_at(self, uv: Tensor): |
| 275 | return math.grid_sample(self.points, uv, ZERO_GRADIENT) |
no test coverage detected