Searched refs:fPoints (Results 1 - 19 of 19) sorted by relevance

/haiku/src/apps/icon-o-matic/transformable/
H A DTransformPointsBox.cpp32 fPoints(count > 0 ? new (nothrow) control_point[count] : NULL)
38 if (fPoints && fIndices) {
43 if (fPath->GetPointsAt(fIndices[i], fPoints[i].point,
44 fPoints[i].point_in,
45 fPoints[i].point_out,
46 &fPoints[i].connected)) {
47 BRect dummy(fPoints[i].point, fPoints[i].point);
53 dummy.Set(fPoints[i].point_in.x, fPoints[
[all...]
H A DTransformPointsBox.h55 control_point* fPoints; member in class:TransformPointsBox
/haiku/src/apps/icon-o-matic/shape/commands/
H A DNudgePointsCommand.cpp52 fPoints(NULL),
60 fPoints = new (nothrow) control_point[fCount];
61 memcpy((void*)fPoints, points, fCount * sizeof(control_point));
69 delete[] fPoints;
76 if (fPath && fIndices && fPoints)
97 fPath->SetPoint(fIndices[i], fPoints[i].point + translation,
98 fPoints[i].point_in + translation,
99 fPoints[i].point_out + translation,
100 fPoints[i].connected);
H A DTransformPointsCommand.cpp45 fPoints(points && count > 0 ?
49 if (!fIndices || !fPoints)
53 memcpy((void*)fPoints, points, fCount * sizeof(control_point));
66 delete[] fPoints;
73 return fPath && fIndices && fPoints ? TransformCommand::InitCheck()
112 BPoint point = transform.Transform(fPoints[i].point);
113 BPoint pointIn = transform.Transform(fPoints[i].point_in);
114 BPoint pointOut = transform.Transform(fPoints[i].point_out);
116 fPoints[i].connected))
H A DNudgePointsCommand.h48 control_point* fPoints; member in class:NudgePointsCommand
H A DTransformPointsCommand.h65 control_point* fPoints; member in class:TransformPointsCommand
/haiku/src/kits/interface/
H A DPolygon.cpp29 fPoints(NULL)
39 fPoints(NULL)
49 fPoints(NULL)
59 fPoints(NULL)
66 free(fPoints);
77 free(fPoints);
78 fPoints = NULL;
82 if (_AddPoints(other.fPoints, other.fCount, false))
114 _MapPoint(fPoints + i, source, destination);
124 fPoints[
[all...]
H A DView.cpp3556 StrokePolygon(polygon->fPoints, polygon->fCount, polygon->Frame(), closed,
3567 StrokePolygon(polygon.fPoints, polygon.fCount, polygon.Frame(), closed,
3593 fOwner->fLink->Attach(polygon.fPoints, polygon.fCount * sizeof(BPoint));
3618 fOwner->fLink->Attach(polygon->fPoints,
3643 fOwner->fLink->Attach(polygon->fPoints,
/haiku/src/add-ons/screen_savers/spider/
H A DPolygon.cpp16 : fPoints(vertices),
27 fPoints.AddItem((void*)pv);
33 : fPoints(points.CountItems()),
36 fPoints = points;
42 while (point_vector* pv = (point_vector*)fPoints.RemoveItem((int32)0))
51 for (int32 i = 0; point_vector *pv = (point_vector*)fPoints.ItemAt(i); i++) {
72 return fPoints.CountItems();
80 if (point_vector* pv = (point_vector*)fPoints.ItemAt(index))
H A DPolygon.h32 BList fPoints; member in class:Polygon
/haiku/src/apps/glteapot/
H A DGLObject.cpp215 fPoints(100, 100),
247 fPoints.add(p);
250 for (int i = 0; i < fPoints.num_items; i++) {
251 fPoints[i].x /= maxp;
252 fPoints[i].y /= maxp;
253 fPoints[i].z /= maxp;
376 fPoints[fQs[i].pts[j]].nx,
377 fPoints[fQs[i].pts[j]].ny,
378 fPoints[fQs[i].pts[j]].nz
381 fPoints[fQ
[all...]
H A DGLObject.h78 BufferArray<point> fPoints; member in class:TriangleObject
/haiku/src/kits/shared/
H A DShakeTrackingFilter.cpp135 fPoints = new BPoint[fSize];
141 delete [] fPoints;
149 fSum -= fPoints[0];
151 fPoints[i] = fPoints[i + 1];
152 fPoints[fSize - 1] = p;
/haiku/headers/private/shared/
H A DShakeTrackingFilter.h26 BPoint* fPoints; member in class:BPrivate::LowPassFilter
/haiku/headers/os/interface/
H A DPolygon.h52 BPoint* fPoints; member in class:BPolygon
/haiku/src/tests/kits/interface/pictureprint/
H A DPreview.cpp38 , fPoints(NULL)
43 fPoints = new BPoint[fNumberOfPictures];
47 (rc = pjp->NextPicture(fPictures[i], fPoints[i], fRects[i])) == B_OK; i ++);
53 delete []fPoints;
64 view->DrawPicture(&fPictures[i], fPoints[i]);
H A DPreview.h37 BPoint* fPoints; member in class:PreviewPage
/haiku/headers/libs/print/libprint/
H A DPreview.h45 BPoint* fPoints; member in class:PreviewPage
/haiku/src/libs/print/libprint/
H A DPreview.cpp40 , fPoints(NULL)
46 fPoints = new BPoint[fNumberOfPictures];
50 fStatus = pjp->NextPicture(fPictures[i], fPoints[i], fRects[i]);
60 delete [] fPoints;
77 view->DrawPicture(&fPictures[i], printRect.LeftTop() + fPoints[i]);

Completed in 282 milliseconds