Xcode 15.0.1: command codeSign failed with a nonzero exit code
Oh, are you running this inside of an iCloud shared folder or a Dropbox folder or any cloud synced folder? I think this has been an issue in the past. Xcode does not like apps being built / signed...
View ArticleXcode 15.0.1: command codeSign failed with a nonzero exit code
Hi @theo , I created a non-sync folder and ran the project, and it worked like a charm. Your help has been invaluable. Now, I can finally dive into my university games computing module, and the relief...
View ArticleCalling the constructor correctly from a different cpp file
Hi @idrinkplastic - welcome! Personally I wouldn’t bother with the menustate constructor. I would have all your game classes inside ofApp.h so something like: #include "ofMain.h" #include...
View ArticleXcode 15.0.1: command codeSign failed with a nonzero exit code
@Raaghav - you are so welcome!!!
View ArticleLive Detecting of Colours
color as viewed by the machine is a tricky thing – the end of episode 066 above hints at the sensitivity to lighting conditions and angle — glare is white no matter what the underlying color is, so...
View ArticleHelp with Syphon
made an account just to say thank you. this was the only working download i could find anywhere
View ArticleIssue with Xcode 15
Thank you for reply, theo. I’ve built also 3DPrimitivesExample from example/3d to check, but it was the same result. It seems it has crashed due to a segmentation fault, but I don’t understand on it....
View ArticleIssue with Xcode 15
Thanks!! I wonder if it’s an issue with FreeImage - could you try using the OF/libs/freeimage/ folder from the 0.11.2 download and see if that works for you?
View ArticleIssue with Xcode 15
Thanks theo, I’ve tried with emptyExample from templates folder both with 0.11.2 and 0.12.0 but I got the same error including initialisation of FreeImage.
View ArticleIssue with Xcode 15
tkdc: ImageLoaderMachO::doModInitFunctions Seeing some similar issues here: https://developer.apple.com/forums/thread/738909 It seems like it might be an issue with Xcode 15 and the linker. There are...
View ArticleIssue with apps built with Xcode 15.0.1 - running on macOS 11 and earlier
Great!! Hopefully this will be fixed in a newer Xcode 15 - I’ll update the topic title so others can find this easier.
View ArticleWhen drawing a quadrilateral with Mesh, I get confused about the coordinate...
Hi @jasonknooc welcome! The answers to some of these questions about coordinates can depend on a few/several different factors. Here are a few suggestions for more info: OF uses openGL. Maybe have a...
View ArticleofPolyline tangents at start and end
I am making a tubular mesh from a polyline, to do this I need the normals and tangents of all the points in the line (I use these to get the orientation of the circle I make around each point). My...
View ArticleAn Open Frameworks V0.12.0 equivalent to the setTransformMatrix function.
I’m looking at a piece of code that was originally written in Open Frameworks in 2018 I believe using OF 0.9.3. The code makes use of a function setTransformMatrix that I can see from this forum...
View ArticleGet audio play position or length in seconds
To get the audio play position or length in seconds, you can use the following steps: Get the audio format. This can be done using the getFormat() method. Get the frame size. This can be done using...
View ArticleGet audio play position or length in seconds
I think this was recently addressed by this PR github.com/openframeworks/openFrameworks Get duration for Sound Players openframeworks:master ← NickHardeman:feature-soundPlayer-getDuration opened...
View ArticleofPolyline tangents at start and end
fresla: One idea I had was to add extra points at the start and end of the line temporarily that point out in the same vector as the first two and last two points, but this seems a bit dodgy. Hey I...
View ArticleAn Open Frameworks V0.12.0 equivalent to the setTransformMatrix function.
I think you mean setTransformMatrix I use this ofxCameraSaveLoad addon nowadays to save and load a ofCamera position and orientation. I believe this new method is:...
View ArticleofPolyline tangents at start and end
I went with adding extra points, I have not checked how it works in complicated cases, with large differences between the last two points, or in all orientations (both cases present opportunities...
View ArticleAn Open Frameworks V0.12.0 equivalent to the setTransformMatrix function.
emmadickson: setTransformMatrix Thank you! This is very informative.
View ArticleMac M1,M2 Kinect Performance
I was recently tasked with migrating Open Frameworks app designed to run with a Kinect on an intel mac architecture to a newer mac system. I found that an M1 was able to run the app (with the help of...
View ArticleBuilding the examples: Fatal error: ofConstants.h: No such file or directory
(post deleted by author)
View ArticleBuilding the examples: Fatal error: ofConstants.h: No such file or directory
Where is the location of this “config.make” file?
View Article