Exercise_8_08_09_TreeArrayLis...

Skip to content Dismiss alert {{ message }} / noc-examples-processing Public
  • Notifications You must be signed in to change notification settings
  • Fork 936
  • Star 2.6k
  • Code
  • Issues 36
  • Pull requests 11
  • Actions
  • Projects
  • Wiki
  • Security

    Uh oh!

    There was an error while loading. Please reload this page.

  • Insights
Additional navigation options Exercise_8_08_09_TreeArrayListLeaves 'pos' and 'loc' names #79New issueNew issueClosed#81ClosedExercise_8_08_09_TreeArrayListLeaves 'pos' and 'loc' names#79#81@ghost

Description

@ghostghostopened on Oct 30, 2016

The-Nature-of-Code-Examples-master\chp08_fractals\Exercise_8_08_09_TreeArrayListLeaves\Leaf.pde

This:

class Leaf { PVector pos; Leaf(PVector l) { loc = l.get(); }

Should be this:

class Leaf { PVector pos; Leaf(PVector l) { pos = l.get(); }

or this:

class Leaf { PVector loc; Leaf(PVector l) { loc = l.get(); }

Metadata

Metadata

Assignees

No one assigned

Labels

No labelsNo labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions

You can’t perform that action at this time.

Từ khóa » Code Lộc 79