Search:

Type: Posts; User: flamingwitch

Search: Search took 0.01 seconds.

  1. Replies
    6
    Views
    2,596

    Hi, The code is all in one file #pragma...

    Hi,

    The code is all in one file



    #pragma once

    #include <vector>
    using namespace std;
  2. Replies
    6
    Views
    2,596

    Thanks for pointing that out. But no, that...

    Thanks for pointing that out. But no, that wasn't what was causing the compiling error

    Sara
  3. Replies
    6
    Views
    2,596

    Template Class and C2059 Error

    I am making a matrix template class it is declared as follows:



    template <typename T>
    class CMatrix
    {
    private:
    vector<vector<T> > matrix;
    int numCols;
  4. Replies
    3
    Views
    2,913

    Thanks for your reply, I would really like my...

    Thanks for your reply,

    I would really like my program to be able to output AVI files, instead of using 3rd party software. I have found tutorials for C++ and I was just wondering if it's also...
  5. Replies
    3
    Views
    2,913

    Creating AVI movies with C Code

    Hi,

    I am endeavouring to make a C program that displays animation based on a set of data. I would like to be able to output this animation into an AVI movie. Is this possible in C, and if so,...
Results 1 to 5 of 5