- 博客(1)
- 资源 (2)
- 收藏
- 关注
原创 快速获取 HuggingFace 文件下载地址实现批量断点续传
修改 huggingface_hub Python 脚本得到所有下载文件目录,用下载工具批量下载、断点续传
2024-03-08 16:27:03
2483
1
1、检测一个点是否在某个2D平面的封闭区间内。 2、检测一个点是否在某个封闭3D空间封闭区间内。
1.RayCastAlgo.zip
通过射线法检测一个点是否在某个平面的封闭区间内。 Check if a Point is Inside the Polygon Using Ray-Casting Algorithm(https://www.codeproject.com/Tips/626992/Check-if-a-Point-is-Inside-the-Polygon-Using-Ray-C)
2、CSLASProc.zip
通过向量检测一个点是否在某个封闭3D空间封闭区间内。Point Inside 3D Convex Polygon in C#(https://www.codeproject.com/articles/1070593/point-inside-d-convex-polygon-in-csharp)
2022-09-25
C#绘制多Y轴Chart源码
可以灵活增加Y轴,并设置Y轴的左右位置。
// Plot using the primary axes (bottom and left)
var mySignalPlot1 = plt.AddSignal(myData1);
mySignalPlot1.XAxisIndex = 0;
mySignalPlot1.YAxisIndex = 0;
// Create another axis to the left and give it an index of 2
var secondYAxis = plt.AddAxis(Edge.Left, axisIndex: 2);
// Plot using the primary X axis but our custom Y axis
var mySignalPlot2 = plt.AddSignal(myData2);
mySignalPlot1.XAxisIndex = 0;
mySignalPlot1.YAxisIndex = 2;
2022-08-22
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人