Search found 36 matches

by eimixas
Thu Feb 14, 2013 12:31 pm
Forum: CloudCompare
Topic: How to resize "Plane"
Replies: 13
Views: 12726

Re: How to resize "Plane"

How to remove object? New plane is created, but old ones has to be removed. here is part of my code: //Parent->removeChild(pPlane); m_app->removeFromDB(pPlane); m_app->refreshAll(); m_app->updateUI(); //delete pPlane; it works only if i comment Parent->removeChild(pPlane); and delete pPlane; is it o...
by eimixas
Sun Feb 10, 2013 6:00 pm
Forum: CloudCompare
Topic: How to resize "Plane"
Replies: 13
Views: 12726

Re: How to resize "Plane"

OK, i will ask similar question in 'Developer > qCC' (i see you moved this one) I understand - i will duplicate with new parameters. Bet how can i get old ones? pPlane->m_xWidth and pPlane->m_yHeight are "access protected" and could find how to get them. (i want to create new plane 5mm lar...
by eimixas
Sat Feb 09, 2013 6:09 pm
Forum: CloudCompare
Topic: How to resize "Plane"
Replies: 13
Views: 12726

How to resize "Plane"

Is any way to resize plane constructed with: ccPlane* pPlane = pCloud->fitPlane(&rms); (cloud is build from 3 selected points) It looks like plane (rectangle) is constructed like mesh using 2 faces (tiangles) - they are shown if "wireframe" option is selected. Should i somehow modify t...
by eimixas
Sat Feb 09, 2013 4:49 pm
Forum: CloudCompare
Topic: Selecting point, or multipe points
Replies: 10
Views: 21297

Re: Selecting point, or multipe points

Checked updates - works great. Tryed selecting multiple "picked points" with CTRL - works also. Accidently tried with SHIFT - but it has other great functionality - creates "picked point" (without using picking point tool). But it is created with big label. I will try to experime...
by eimixas
Sat Feb 09, 2013 1:45 am
Forum: CloudCompare
Topic: Selecting point, or multipe points
Replies: 10
Views: 21297

Re: Selecting point, or multipe points

Selecting 2d label works - if no mesh or points is behind it. (point 1 in upper image) (2d label are so large - why should they be used?) I want to "select" red square that is painted on "picked point" (not label) Perfect solution would be selecting multipe points - with drawing ...
by eimixas
Sat Feb 09, 2013 1:36 am
Forum: CloudCompare
Topic: Selecting point, or multipe points
Replies: 10
Views: 21297

Re: Selecting point, or multipe points

additional question:

your code:

Code: Select all

ccGLWindow* win = m_app->getActiveGLWindow();
if (win)
    win->setPickingMode(POINT_PICKING);
is it possible to make it something like "FACE_PICKING"?

(point picking list - but using not point cloud, but mesh faces too)
by eimixas
Sat Feb 09, 2013 1:25 am
Forum: CloudCompare
Topic: Selecting point, or multipe points
Replies: 10
Views: 21297

Re: Selecting point, or multipe points

something here is wrong (i enabled "Show 2D label" as in your image) i have view like below: http://sos.teja.lt/~eimix/dantys/cc/PickList.jpg if i select anything on tree (shown on left screen side) it works - and border (red) is shown but if i try click anyware on "3d view" (rig...
by eimixas
Fri Feb 08, 2013 4:54 pm
Forum: CloudCompare
Topic: Selecting point, or multipe points
Replies: 10
Views: 21297

Re: Selecting point, or multipe points

Yes, but how to enable this?
Trying to click mouse on that label "Point 1", or red square that is drawn for picked point - but nothing is selected.
by eimixas
Fri Feb 08, 2013 9:55 am
Forum: CloudCompare
Topic: Selecting point, or multipe points
Replies: 10
Views: 21297

Re: Selecting point, or multipe points

Thanks for links - helpfull.

I do not try to select "points" in point cloud.
I want to select points what are already picked with "Point picking" tool, and has it's own "square" and label in view.
by eimixas
Thu Feb 07, 2013 7:45 pm
Forum: CloudCompare
Topic: Moving primitives (translation)
Replies: 2
Views: 4545

Re: Moving primitives (translation)

Thank you - it works.