Skip to content

Latest commit

 

History

History
61 lines (34 loc) · 2.05 KB

File metadata and controls

61 lines (34 loc) · 2.05 KB
graph LR
    KnittingPatternSet["KnittingPatternSet"]
    KnittingPattern["KnittingPattern"]
    Mesh["Mesh"]
    Row["Row"]
    Instruction["Instruction"]
    KnittingPatternSet -- "contains" --> KnittingPattern
    KnittingPattern -- "consists of" --> Row
    Row -- "comprises" --> Instruction
    KnittingPattern -- "generates" --> Mesh
Loading

CodeBoardingDemoContact

Details

Updated analysis insights with source code references for KnittingPatternSet, KnittingPattern, and Mesh. Row and Instruction still need source code references.

KnittingPatternSet

Represents a collection of knitting patterns.

Related Classes/Methods:

KnittingPattern

Defines a single knitting pattern.

Related Classes/Methods:

Mesh

Represents the knitted fabric structure.

Related Classes/Methods:

Row

Represents a single row in a knitting pattern.

Related Classes/Methods: None

Instruction

Represents a single instruction in a knitting pattern.

Related Classes/Methods: None