Giter Club home page Giter Club logo

sfml-plot's People

Contributors

bechu avatar bitdeli-chef avatar pow3ertux avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

sfml-plot's Issues

Wrong rendering due to while loop in sf::plot::Curve::prepare

What are these lines (curve.cpp, lines 76-79) supposed to do?

int xoffset = size_.x / (data_.size());

while(xoffset * data_.size() < (size_.x+xoffset))
    xoffset++;

When leaving the while loop uncommented, the function is stretched in the x direction.
I understand what those lines are supposed to achieve, but dont understand the approach used. I fixed this by rewriting the code to:

float xoffset = size_.x / (data_.size()-1);

/*while(xoffset * data_.size() < (size_.x+xoffset))
    xoffset++;*/

To recreate the error, simply trying to draw a plot of the function f(x)=x with 1000 points should suffice.

Examples:

All Examples render 200 Points with a Resolution of 0.1.

f(x)=x

Old Code

lin_wrong

New Code

lin_correct

f(x)=sin(x) * 1/(1+x)

Old Code

sin_wrong

New Code

sin_correct

Issue

image
Hi, I tried to run this code but this is the error I kept getting

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.