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
2
votes
1 answer

How does CMake package finding work?

I was working on Qub3d which uses libCinder as a dep, and kept getting this weird error about not being able to find one of the pre-bundled cmake files. CMake Error at dependencies/cinder/proj/cmake/modules/cinderMakeApp.cmake:65 (find_package): …
TMcSquared
  • 107
  • 14
2
votes
0 answers

kubernetes can't use cinder plugin successfully to provide volume

I am trying to use the cinder plugin for kubernetes to create a pod vloume, but I see no activity between my cluster and cinder for mounting the devices. Kubernetes Version: kubectl version Client Version: version.Info{Major:"1", Minor:"4",…
2
votes
0 answers

Use variables to control execution behavior in a custom scope - disadvantage?

I have recently encountered a scope technique in Cinder -- a graphics library: { gl::ScopedModelMatrix scpModelMatrix; //.... Anything in this area will be executed in ModelMatrix-mode. // (if applicable) } //.... In this…
javaLover
  • 6,347
  • 2
  • 22
  • 67
2
votes
2 answers

How to get Kinect working with Cinder on a Mac

I've been racking my brain trying to figure this out and I'm stumped. I'm currently following this tutorial: http://examples.oreilly.com/0636920022657/Hack%2023%20Create%20Hand%20Tracking%20Trails%20Using%20Cinder/SimpleHandTracking.txt However,…
Kat
  • 475
  • 1
  • 6
  • 21
2
votes
2 answers

STFT / sliding FFT on real-time data

I recently picked up a project where I need to perform a real-time sliding FFT analysis on incoming microphone data. The environment I picked to do this in, is OpenGL and Cinder and using C++. This is my first experience in audio programming and I…
Sepehr
  • 2,051
  • 19
  • 29
2
votes
1 answer

Cinder how to texture an .obj trimesh

I am new to c++/cinder and I am trying to import a 3ds .obj file into cinder and apply a simple texture. I really cant find any simple tutorials on how to do this and it seems to be slightly different to freeGLUT. gl::Texture sTexture; sTexture…
2
votes
1 answer

Reproduce Cinder glitch in WebGL

There is a visual glitch that appears using OpenGL in Cinder that I would like to reproduce in WebGL if possible. The effect comes from initializing a texture with a size, but without any data. Basically it is displaying junk memory on the GPU…
2
votes
0 answers

devstack - how to add directly attached storage to a single node installation

I have devstack up and running on an Ubuntu 14.04 x86_64 VM in a single node environment. The VM has / mounted on an 8GB primary disk and an 80GB secondary disk mounted on /mnt. Output of mount /dev/xvda1 on / type ext4 (rw) proc on /proc type proc…
Jasonovich
  • 621
  • 5
  • 13
2
votes
0 answers

Cinder + FreeImage + XCode

I am working on a project that uses Cinder for graphics, and for image loading, we are using FreeImage mainly for loading HDR images. It is all working fine under windows, but now I am trying to build an OSX version I am hitting a snag. First I…
DaleyPaley
  • 201
  • 2
  • 11
2
votes
1 answer

cstdint file not found when building on the command line

I'm trying to build a couple of projects on the command like but I keep getting screwed up by an failure to find . The project tries to build an when it gets to a specific line in the include path, specifically #include it throws…
Ryan Bartley
  • 606
  • 8
  • 17
2
votes
3 answers

Error when creating volume with openstack dashboard

I got an error when trying to create a volume via the openstack dashboard, after installing openstack guided by this: https://github.com/mseknibilel/OpenStack-Folsom-Install-guide/blob/master/OpenStack_Folsom_Install_Guide_WebVersion.rst In fact…
taijirobot
  • 143
  • 1
  • 2
  • 8
2
votes
2 answers

Openstack create volume via Nova API

I'm trying to build a small webapp that will handle our development environments located on an openstack infrastructure (version 2012.2.2-dev, bundled in ubuntu 12.04) and I need to create some volumes using the API (i decided to use openstack rest…
MihaiM
  • 196
  • 1
  • 7
2
votes
1 answer

Is it possible to compile Cinder on Visual Studio Express 2012?

I'm interested in using Cinder, but version 0.8.4 only supports VS 2008 and VS 2010. Has anyone been able to get Cinder to work/compile on VS Express 2012?
teknix
  • 935
  • 2
  • 9
  • 14
2
votes
2 answers

moving from one point to point on sphere

I'm working with a GPU based particle system. There are 1 million particles computed by passing in the x,y,z positions as rgb values on a 1024*1024 texture. The same is being done for their velocities. I'm trying to make them move from an arbitrary…
thepaperboy
  • 676
  • 7
  • 6
1
vote
1 answer

Building a Sample Cinder Program in Ubuntu

I am trying to run a sample cinder in my device, but I am facing problem to do so, First of all I cloned the cinder's repository from github and build it. mkdir build && cd build cmake .. The build was sucessfull. The documentation states…
IcanCode
  • 509
  • 3
  • 16
1
2
3
8 9