Thread: Need to know parameter format for a Call function?

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Guest Sebastiani's Avatar
    Join Date
    Aug 2001
    Location
    Waterloo, Texas
    Posts
    5,708
    Quote Originally Posted by Will1 View Post
    I already would offer ADAM to program developers for $250.00 but the problem is that Version 1.2 is a DOS 16 bit system, virtually already outdated. That wouldn't get you the source, just the .obj with a user's guide. You don't need the source to write programs that use it. Version 2.0, Windows 32 bit, which I'm working now on has 2 of the three .obj modules already working. It will be available under the same license, and cost. Of course, to developers who would like to try it, I'll provide it for a free trial period. There is a second license available where you can get ADAM for free and pay a % of the gross amount of revenue you generate from any use of it.

    Will
    No source? No thanks!
    Code:
    #include <cmath>
    #include <complex>
    bool euler_flip(bool value)
    {
        return std::pow
        (
            std::complex<float>(std::exp(1.0)), 
            std::complex<float>(0, 1) 
            * std::complex<float>(std::atan(1.0)
            *(1 << (value + 2)))
        ).real() < 0;
    }

  2. #2
    Registered User
    Join Date
    Jul 2014
    Location
    Amarillo, Texas
    Posts
    104
    Quote Originally Posted by Sebastiani View Post
    No source? No thanks!
    Why would you need the source? (You don't get the source other software products but you use them!)

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Function call Overhead and Function Call Stack
    By Alam Khan in forum C++ Programming
    Replies: 2
    Last Post: 04-26-2014, 08:28 AM
  2. Replies: 4
    Last Post: 10-03-2011, 06:30 AM
  3. Replies: 13
    Last Post: 08-24-2006, 12:22 AM
  4. Parameter in a function
    By cpluspluser in forum C++ Programming
    Replies: 2
    Last Post: 04-09-2003, 07:48 PM