
Hi, OpenFlipper uses Vec4f as it's color format. So Your colors should be defined as RGBA (range 0 ... 1 per component). TriMesh::Color(1.0, 0.0, 0.0 ,1.0)); If that does not work, please send me the error produced by the compiler. Best, Jan Möbius On 20.07.2012 18:02, xyliu80@gmail.com wrote:
Dear Openflipper,
Currently, we encountered error while calling set_color command.
Here is our code line:
for(std::vector<int>::iterator iterAvi = verticeInSelection_.begin(); iterAvi != verticeInSelection_.end(); ++iterAvi) { for(TriMesh::VertexVertexIter vv_it = _mesh->vv_iter(_mesh->vertex_handle(*iterAvi)); vv_it; ++vv_it) { if(!_mesh->status(vv_it).selected()) { //_mesh->set_color(_mesh->vertex_handle(*iterAvi), TriMesh::Color(250, 0, 160)); vecBoundary_.push_back(*iterAvi); break; } } }
Could you kindly give us your suggestion?
Best Regards, ------------------------------------------------------------------------ *Xianyong Liu Shanghai JiaoTong University* *Office: +86 021 34204586 Mobile: +86 18817559980 E-mail: **xyliu80@gmail.com* <mailto:xyliu80@gmail.com>
*Address: 504 Room, SEIEE buiding 3#, 800 Dongchuan Rd,Min Hang,Shanghai,200240,China*
*From:* openflipper-request <mailto:openflipper-request@lists.rwth-aachen.de> *Date:* 2012-07-16 18:00 *To:* openflipper <mailto:openflipper@lists.rwth-aachen.de> *Subject:* Openflipper Digest, Vol 29, Issue 2 Send Openflipper mailing list submissions to openflipper@lists.rwth-aachen.de
To subscribe or unsubscribe via the World Wide Web, visit http://mailman.rwth-aachen.de/mailman/listinfo/openflipper or, via email, send a message with subject or body 'help' to openflipper-request@lists.rwth-aachen.de
You can reach the person managing the list at openflipper-owner@lists.rwth-aachen.de
When replying, please edit your Subject line so it is more specific than "Re: Contents of Openflipper digest..."
Today's Topics:
1. How to change the "Switch viewer layout" in the toolbar (HOTMAIL) 2. Re: How to change the "Switch viewer layout" in the toolbar (Jan Möbius)
----------------------------------------------------------------------
Message: 1 Date: Mon, 16 Jul 2012 08:48:43 +0800 From: HOTMAIL <chinaairforce1@hotmail.com> To: openflipper <openflipper@lists.rwth-aachen.de> Subject: [Openflipper] How to change the "Switch viewer layout" in the toolbar Message-ID: <BLU0-SMTP1854A2D1D5E72F8CC06434294D40@phx.gbl> Content-Type: text/plain; charset="gb2312"
Dear Openflipper, In code, we are able to call the following instruction to switch the view mode from single to double.
RPC::callFunction("core", "MultiViewMode", 1);
However, I found that the combo of "Switch viewer layout" in the toolbar did not change. It was still in the first item.
How could I change it in code?
Best Regards, Xianyong Liu.