按建议,继续下一步工作
结论:已将 LinuxCNC TP 源码纳入 wasm-port 的可复现 vendor 清单和 native probe 构建,新增真实 tpCreate/tpAddLine/tpRunCycle 线性运动验证,并通过 native probes 全量验证。
This commit is contained in:
2005
wasm-port/vendor/linuxcnc/src/libnml/posemath/_posemath.c
vendored
Normal file
2005
wasm-port/vendor/linuxcnc/src/libnml/posemath/_posemath.c
vendored
Normal file
File diff suppressed because it is too large
Load Diff
3743
wasm-port/vendor/linuxcnc/src/libnml/posemath/gomath.c
vendored
Normal file
3743
wasm-port/vendor/linuxcnc/src/libnml/posemath/gomath.c
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1411
wasm-port/vendor/linuxcnc/src/libnml/posemath/posemath.cc
vendored
Normal file
1411
wasm-port/vendor/linuxcnc/src/libnml/posemath/posemath.cc
vendored
Normal file
File diff suppressed because it is too large
Load Diff
27
wasm-port/vendor/linuxcnc/src/libnml/posemath/sincos.c
vendored
Normal file
27
wasm-port/vendor/linuxcnc/src/libnml/posemath/sincos.c
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
/********************************************************************
|
||||
* Description: sincos.c
|
||||
*
|
||||
* Derived from a work by Fred Proctor & Will Shackleford
|
||||
*
|
||||
* Author:
|
||||
* License: LGPL Version 2
|
||||
* System: Linux
|
||||
*
|
||||
* Copyright (c) 2004 All rights reserved.
|
||||
********************************************************************/
|
||||
/*
|
||||
sincos.c
|
||||
|
||||
Modification history:
|
||||
|
||||
21-Jan-2004 P.C. Moved across from the original EMC source tree.
|
||||
*/
|
||||
|
||||
#include <rtapi_math.h>
|
||||
#include "sincos.h"
|
||||
|
||||
void pm_sincos(double x, double *sx, double *cx)
|
||||
{
|
||||
*sx = sin(x);
|
||||
*cx = cos(x);
|
||||
}
|
||||
Reference in New Issue
Block a user