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
0
votes
2 answers

Changing alpha in Cinder

I'm trying to have my particles fade away with time. I don't seem to be changing the opacity at all though. Any idea what the problem is? class Particle { public: Particle(); Particle( ci::Vec2f ); void update(); void draw(); …
JupiterOrange
  • 339
  • 2
  • 6
  • 18
0
votes
1 answer

getOpenFilePath error in early part of Cinder tutorial in Xcode on 10.6.8

I just downloaded Cinder v0.8.4 on my Macbook Pro running OSX 10.6.8, and started working through Chapter 1 of Welcome to Cinder using Xcode. I used the Tinderbox tool to make a new project called CinderProjectApp with default options. I also…
JesseBikman
  • 632
  • 1
  • 5
  • 22
0
votes
2 answers

Random EXC_BAD_ACCESS due to something I must have overlooked

I'm back to C++ after a long while, and I wanted to do it with style so I dived face-first into libCinder and started doing stuff I had rarely done before (and even then I used to prefer Qt for a number of reasons). What can go wrong with this…
Morpheu5
  • 2,610
  • 6
  • 39
  • 72
-1
votes
1 answer

OpenStack Block Storage cannot create LVM physical volume

I am trying to implement an OpenStack environment and following the Stein installation guide. For the installation process, I am using multiple nodes running on Ubuntu (not in Virtual Box). Right now, I would like to install Cinder Block Storage and…
PFWS19
  • 1
  • 1
-1
votes
1 answer

Using GraphicsPath::AddString() complains with "class 'GraphicsPath' has no member 'AddString'"

I am trying to use the GraphicsPath::AddString() method of GDI+ in my libcinder project. The idea is to create a path of a letter/glyph via the mentioned method and later pass that to gl::draw() and box2d's b2FixtureDef. The goal is create falling…
Matthias Güntert
  • 4,013
  • 6
  • 41
  • 89
-1
votes
2 answers

Accessing an object from a vector of object pointers

This is a bit code i'm having trouble with: int pressedKey = event.getNativeKeyCode(); for (int i=0; i <= AllTriggerPads.size() ;i++) { if (AllTriggerPads[i]->get_key() == pressedKey){ AllTriggerPads[i]->mBufferPlayerNode->start(); …
-1
votes
1 answer

Cinder can't update window's title when the application is running

I have tried copying the Settings *settings to a class variable and using sets->setTitle("new title"); but outside the setup() method it doesn't work. Is there a workaround to that?
kacpr
  • 440
  • 1
  • 8
  • 28
-1
votes
2 answers

How do I use a C dynamic library in a C++ framework?

I'm trying to use C Redis client library in the Cinder framework. I'm not sure where to put the extern "C" declarations or if it works even if I put it correctly. Please help.
dazzphot
  • 307
  • 1
  • 3
  • 11
-1
votes
1 answer

openstack-cinder, how to resize a volume?

http://developer.openstack.org/api-ref-blockstorage-v2.html i can't find volume extend API... how to extend openstack volume size??
김영석
  • 1
  • 1
-3
votes
1 answer

First-chance exception at 0x0070C75C in BunkerBuilder.exe: 0xC0000005: Access violation writing location 0xCCCCCC04

I'm getting this error when I try to store a variable in d.dwellerModel, in the my loadDweller() function. I've marked the line with '//Error'. This code hasn't thrown any errors like these before, and I haven't modified this code, which makes me…
Zachary D.
  • 43
  • 4
-5
votes
1 answer

Graphics for C++ cross-platform music making software

EDITED, see below I need an library to display graphics of music notation on a music making software. It will be Sibelius-like: Basically the user creates the sheet music and the app sends midi output. I'm not looking for an library to display music…
Henri Augusto
  • 309
  • 3
  • 14
1 2 3
8
9