patriciogonzalezvivo / vPlotter

Wireless vPlotter for RaspberryPi
http://patriciogonzalezvivo.com/2014/vPlotter/
BSD 3-Clause "New" or "Revised" License
67 stars 17 forks source link

lines = p.getOutline initialization of reference of type error #4

Open elid opened 8 years ago

elid commented 8 years ago

Hi Patricio, First Thanks for your amazing work on the vPlotter :) I had to correct the line 29 on ofApp.cpp file to compile the app correctly from vector& lines = p.getOutline(); to vector& lines = const_cast<vector&>(p.getOutline()); apparently p.getOutline need to cast as a polyline array on raspberry pi

Thanks! /Frederic

sobrien556 commented 5 years ago

Hi Frederic, I am still receiving an error upon compilation, even with your suggestions. I have attached the screenshot of the errors I recieved. Thanks!

Screen Shot 2019-03-26 at 1 14 22 AM

(url)