Skip to content

Book 2 3.4. Missing inclusion of interval header #1709

@craqvfx

Description

@craqvfx

Missing inclusion of interval header in aabb.h class:

#ifndef AABB_H
#define AABB_H

class aabb {
  public:
    interval x, y, z;
...

should be:

#ifndef AABB_H
#define AABB_H

#include "interval.h"

class aabb {
  public:
    interval x, y, z;
...

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions