Home
last modified time | relevance | path

Searched refs:keyshape (Results 1 – 5 of 5) sorted by relevance

/dports/comms/fldigi/fldigi-4.1.20/src/wwv/
H A Dwwv.cxx173 keyshape[i] = 0.5 * (1.0 - cos (M_PI * i / 32)); in makeshape()
195 audio[i] *= keyshape[i]; in makeaudio()
196 audio[199 - i] *= keyshape[i]; in makeaudio()
/dports/cad/opencascade/opencascade-7.6.0/src/ShapeProcessAPI/
H A DShapeProcessAPI_ApplySequence.cxx110 TopoDS_Shape keyshape = It.Key(), valueshape = It.Value(); in PrintPreparationResult() local
111 if (keyshape.ShapeType() == TopAbs_SHELL) { in PrintPreparationResult()
115 else if (keyshape.ShapeType() == TopAbs_FACE) { in PrintPreparationResult()
/dports/comms/fldigi/fldigi-4.1.20/src/include/
H A Dwwv.h72 double keyshape[32]; // 4 msec rise and fall time for pulse variable
/dports/cad/opencascade/opencascade-7.6.0/src/ShapeProcess/
H A DShapeProcess_ShapeContext.cxx441 TopoDS_Shape keyshape = It.Key(), valueshape = It.Value(); in PrintStatistics() local
442 if (keyshape.ShapeType() == TopAbs_SHELL) in PrintStatistics()
445 else if (keyshape.ShapeType() == TopAbs_FACE) in PrintStatistics()
/dports/comms/fldigi/fldigi-4.1.20/src/cw_rtty/
H A Dcw.cxx920 double keyshape[CWKNUM]; variable
925 for (int i = 0; i < CWKNUM; i++) keyshape[i] = 1.0; in create_edges()
932 keyshape[i] = (0.42 - 0.50 * cos(M_PI * i/ knum) + 0.08 * cos(2 * M_PI * i / knum)); in create_edges()
939 keyshape[i] = 0.5 * (1.0 - cos (M_PI * i / knum)); in create_edges()
1013 if (n < knum) outbuf[n] *= keyshape[n]; in send_symbol()
1014 if (len - n < knum) outbuf[n] *= keyshape[len - n]; in send_symbol()