congpt

Results 1 issues of congpt

```js AbstractContentContext::GraphicOptions pathStrokeOptions( AbstractContentContext::eStroke, AbstractContentContext::eRGB, AbstractContentContext::ColorValueForName("DarkMagenta"), 4); DoubleAndDoublePairList pathPoints; // draw path pathPoints.push_back(DoubleAndDoublePair(100,200)); pathPoints.push_back(DoubleAndDoublePair(100,201)); pathPoints.push_back(DoubleAndDoublePair(100,202)); context->DrawPath(pathPoints,pathStrokeOptions); ``` I've followed above snippet as `https://github.com/galkahana/PDF-Writer/blob/master/PDFWriterTestPlayground/HighLevelContentContext.cpp#L64`. But it didn't display any path. I...