Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6064559
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T09:17:36+00:00 2026-05-23T09:17:36+00:00

I have been trying to create a list of general global C functions for

  • 0

I have been trying to create a list of general global C functions for various classes to use, and although i’ve done this in the past, this one is having problems. Here are the .h and .c parts of the list.

CGGeometry.h

//CDPoint
//////////////////////////////////////////////////////////////////////

typedef struct CDPoint {
    CGFloat x, y, z;

} CDPoint;

// Creates a CDPoint from 3 float numbers
CDPoint CDPointMake(float x, float y, float z);



//CDLine
//////////////////////////////////////////////////////////////////////

typedef struct CDLine {
    CDPoint a, b;

} CDLine;

// Creates a CDPoint from 2 CDPoints
CDLine CDLineMake(CDPoint a, CDPoint b);



//CDVector
//////////////////////////////////////////////////////////////////////

typedef struct CDVector {
    CDPoint start, finish;
    CDPoint gradient;

} CDVector;

// Creates a CDVector from 2 CDPoints
CDVector CDVectorMake(CDPoint startPoint, CDPoint endPoint);

// Returns a point travelled to on a given vector, using a start point and a distance        scalar.
CDPoint CDVectorTrace(CDVector vecToTrace, CDPoint startPoint, float distance);


//CDExtra
//////////////////////////////////////////////////////////////////////

// This is stuff that shoudn't really be in this section, but are for convenience      purposes until it has enough functions to be standalone.

GLfloat* CDMeshColorsCreateGrey(CGFloat bValue, CGFloat vertCount);

CGFloat* CDMeshVertexesCreateRectangle(CGFloat height, CGFloat width);

CDGeometry.c

#include "CDGeometry.h"

//CDGeometry.c

/* A collection of functions and typedefs that aid 2D and 3D environment positioning and  provides methods for objects and processes.  Also includes elements relevant to collision detection. */


//CDPoint
//////////////////////////////////////////////////////////////////////

CDPoint CDPointMake(float x, float y, float z)
{
    return (CDPoint) {x, y, z};
}



//CDLine
//////////////////////////////////////////////////////////////////////

CDLine CDLineMake(CDPoint a, CDPoint b) 
{
    return (CDLine) {a, b};
}




//CDVector
//////////////////////////////////////////////////////////////////////

CDVector CDVectorMake(CDPoint startPoint, CDPoint endPoint)
{
CDPoint grad = CDPointMake(startPoint.x / endPoint.x,
                           startPoint.y / endPoint.y,
                           startPoint.z / endPoint.z);

return (CDVector) {startPoint, endPoint, grad};
}



//CDExtra
///////////////////////////////////////////////////////////////////// 

GLfloat* CDMeshColorsCreateGrey(CGFloat bValue, CGFloat vertCount) 
{
GLfloat *greyColor = (GLfloat *) malloc(vertCount * 4 * sizeof(GLfloat));

int index = 0;
for (index = 0; index < (vertCount); index++)
{
    int position = index * 4;
    greyColor[position] = bValue;
    greyColor[position + 1] = bValue;
    greyColor[position + 2] = bValue;
    greyColor[position + 3] = 1.0;
}

return greyColor;
}

CGFloat* CDMeshVertexesCreateRectangle(CGFloat height, CGFloat width) {
CGFloat *squareVertexes = (CGFloat *) malloc(8 * sizeof(CGFloat));
squareVertexes[0] = -(width / 2);
squareVertexes[1] = -(height / 2);
squareVertexes[2] = (width / 2);
squareVertexes[3] = -(height / 2);
squareVertexes[4] = (width / 2);
squareVertexes[5] = (height / 2);
squareVertexes[6] = -(width / 2);
squareVertexes[7] = (height / 2);

return squareVertexes;
}

When I don’t import or any other framework, I receive ‘Parse Error: unknown type name’ for CGFloat and GLfloat. When I do inside the .h file, I get Parse and Semantic errors, where NSString is an unknown type name inside the framework, as well as other, ‘Expected Identifier or (” errors.

I’ve never had to include this header for my original C function lists, i’ve gone through other example code from Apple and i’ve checked headers on other classes that use these functions and typedefs, and I cant find the problem.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T09:17:37+00:00Added an answer on May 23, 2026 at 9:17 am

    CGFloat is part of the CoreGraphics Framework. If you want to use pure C you will not have access to the CGFloat and need to define it as just a float. If your class is only going to be used with Objective-C you can make it a .m file and you should not have any trouble.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Ok I'm stumped. I have been trying to use Simpletip to create a tooltip
I have been trying to create a page using views that will list down
I have been trying to create a ListView which I can sort using drag
I have been trying to create a menu panel with jQuery that can be
I have been trying to create a new google custom search engine, but when
I have been trying to create a simple program with Python which uses OpenCV
I have been trying to create an observable tweeter feed using tweetsharp with the
I have been trying to create an XML using the simplexml library (v2.6.2) http://simple.sourceforge.net/home.php
Hi I have been trying to create a crossfade plugin with previous and next
I have been trying for almost a week now to create an SQLite database

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.