Questions tagged [cinder]

Cinder is a peer-reviewed, free, open source C++ library for creative coding.

Cinder is a peer-reviewed, free, open source C++ library for creative coding.

Cinder provides a powerful, intuitive toolbox for programming graphics, audio, video, networking, image processing and computational geometry. Cinder is cross-platform, and in general the exact same code works under Mac OS X, Windows and a growing list of other platforms — most recently the iPhone and iPad.

Cinder is designed to take advantage of platforms’ native capabilities whenever it’s possible, and relies on a minimum of 3rd party libraries. This makes for much lighter, faster applications, and means Cinder apps get free performance, security and capability upgrades whenever the operating system does.

More info: Cinder

131 questions
1
vote
1 answer

VS2012C++: Hundreds of errors when compiling glee.h file

I am using Windows7 64bit with VS2012. When including "gl/gl.h", I get more than 100 errors when the compiler tries to compile glee.h. I have included windows.h in glee.h before including gl.h like the others said to do but I am still getting…
rgajrawala
  • 2,148
  • 1
  • 22
  • 35
1
vote
1 answer

How to build a 3d diamond in openframeworks for iOS

How to build a 3d diamond in openframeworks for iOS? I'm having a hard time finding useful tutorials for 3d rendering in openframeworks, and I am coming from Processing.
riccardolardi
  • 1,713
  • 5
  • 20
  • 35
1
vote
1 answer

How can I compile Cinder in Eclipse for MacOS X 10.8.2

I've downloaded and installed Cinder and even run the TinderBox tutorial to create a Cinder project in XCode. However i'm keen to use eclipse as my IDE and not Xcode. I'm running OSX 10.8.2 Having followed the following tutorials to configure…
Emile
  • 11,451
  • 5
  • 50
  • 63
1
vote
1 answer

OpenCV Isolate silhouette from webcam stream

I'm trying to isolate the silhouette of a person from an unknown video stream. ( The users webcam ), using C++/Cinder/OpenCV. I've got as far as identifying & drawing contours, but I'm not getting a contour of the whole person, just elements ( hair,…
mrr
  • 11
  • 3
1
vote
2 answers

Trying to figure out Vec2 class from Cinder

So I have a Node class that contains a member variable "center" that is a Vec2float*. The reason for this is because I want to use the drawSolidCircle function, and I need a Vec2float variable to represent the center. One of the questions I have is,…
1
vote
2 answers

cinder function overload error

In this simple cinder example (from cinder introduction - http://libcinder.org/docs/v0.8.4/hello_cinder.html) I get this compilation error: myImage = gl::Texture( loadImage( loadResource( "image.jpg" ) ) ); Error 1 error C2661:…
dvgvrco
  • 91
  • 1
  • 4
1
vote
1 answer

Drawing to canvas from another class in Cinder

Is there a way I can draw using libcinder without having to put all my code on the draw() method of the main class. I'm working on a big app and it's not convenient in any way to have everything stuffed in one file. This is an example of what the…
StJimmy
  • 504
  • 3
  • 9
  • 18
1
vote
0 answers

Painting app using FBO in OpenGL

I am working on an application in C++ and OpenGL (using Cinder library). It is simply getting mouse input, and in the draw method draws circles on the mouse position to the FBO. After that the FBO is drawn to the screen. The FBO isn't cleared…
0
votes
1 answer

Cinder or pure OpenGL for iOS development

As im quite new to obj-C but on the other hand a common user of CPP and ANSI C, im a bit out of my comfortzone working with obj-C. So people might ask, why i dont learn obj-C? Id love to learn it, but unfortunately im in a very tight schedule due…
JavaCake
  • 4,075
  • 14
  • 62
  • 125
0
votes
1 answer

Cinder: How to get a pointer to data\frame generated but never shown on screen?

There is that grate lib I want to use called libCinder, I looked thru its docs but do not get if it is possible and how to render something with out showing it first? Say we want to create a simple random color 640x480 canvas with 3 red white blue…
myWallJSON
  • 9,110
  • 22
  • 78
  • 149
0
votes
0 answers

Openstack instance creation fails on attempt to attach a volume

I am trying to get familiar with Openstack. I started out with devstack but was told by folks to use kolla-ansible as my base which I did. I am using the wallaby version all-in-one. I successfully installed it and got public and private networks…
nekton
  • 1
0
votes
0 answers

NFS backend is not working with CEPH Openstack cluster setup

Cinder volume and backup properly functioning with ceph and ceph backup but when tried to use nfs instead of ceph backups ,its not working NFS server is installed and mounted that path in my controller added below details on [DEFAULT] section of…
0
votes
0 answers

Is it possible to pass sort key to Cinder API in OpenStack Horizon (Victoria)?

I want to sort volume list when paged but in the back end. For that, I need to pass sort_key and sort_dir to Cinder API. Documentation: wiki.openstack.org/wiki/API_Special_Interest_Group/Current_Design/Sorting
PRG
  • 1
0
votes
2 answers

How to repeat the same command in creating the openstack backup?

I took volumes 'in-use' of OpenStack instance and filtered those volume ids into a file from which it has to make a backup shell: openstack volume list | grep 'in-use' | awk '{print $2}' > /home/volumeid shell: openstack volume backup create {{…
0
votes
1 answer

openstack cinder VolumeSizeExceedsAvailableQuota tips mismatch volume type

Create a volume will show the same error tips, no matter what --type option with. # openstack volume create --size 500 test_vol VolumeSizeExceedsAvailableQuota: Requested volume or snapshot exceeds allowed gigabytes quota. Requested 500G, quota is…
Victor Lee
  • 2,467
  • 3
  • 19
  • 37
1 2 3
8 9