Skip to content

Instantly share code, notes, and snippets.

// .h
ofPath path;
// setup
path.rectangle(0,0,ofGetWidth(),ofGetHeight());
path.circle(ofGetWidth()*.5,ofGetHeight()*.5,100);
path.setFilled(true);
path.setFillColor(color);
.DEFAULT_GOAL=Release
# define the OF_SHARED_MAKEFILES location
OF_SHARED_MAKEFILES_PATH=$(OF_ROOT)/libs/openFrameworksCompiled/project/makefileCommon
include $(OF_SHARED_MAKEFILES_PATH)/config.shared.mk
# if APPNAME is not defined, set it to the project dir name
ifndef APPNAME
APPNAME = $(shell basename `pwd`)
/*
* ofPBO.cpp
*
* Created on: 08/04/2012
* Author: arturo
*/
#include "ofPBO.h"
#ifndef TARGET_OPENGLES
/*
* ofPBO.h
*
* Created on: 08/04/2012
* Author: arturo
*/
#pragma once
#include "ofConstants.h"
#include "ofTexture.h"