Package | Description |
---|---|
org.apache.batik.ext.awt.geom |
Contains extensions to the
java.awt.geom package. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractSegment
An abstract class for path segments.
|
class |
Cubic
A class representing a cubic path segment.
|
class |
Linear
A class representing a linear path segment.
|
class |
Quadradic
A class representing a quadratic path segment.
|
Modifier and Type | Method and Description |
---|---|
Segment |
Cubic.getSegment(double t0,
double t1) |
Segment |
Linear.getSegment(double t0,
double t1) |
Segment |
Quadradic.getSegment(double t0,
double t1) |
Segment |
Segment.getSegment(double t0,
double t1) |
Segment |
Cubic.reverse() |
Segment |
Linear.reverse() |
Segment |
Quadradic.reverse() |
Segment |
AbstractSegment.splitAfter(double t) |
Segment |
Linear.splitAfter(double t) |
Segment |
Segment.splitAfter(double t) |
Segment |
AbstractSegment.splitBefore(double t) |
Segment |
Linear.splitBefore(double t) |
Segment |
Segment.splitBefore(double t) |
Modifier and Type | Method and Description |
---|---|
void |
SegmentList.add(Segment s) |
void |
Cubic.subdivide(double t,
Segment s0,
Segment s1)
Subdivides this Cubic curve into two curves at given t.
|
void |
Linear.subdivide(double t,
Segment s0,
Segment s1)
Subdivides this Linear segment into two segments at given t.
|
void |
Quadradic.subdivide(double t,
Segment s0,
Segment s1)
Subdivides this Quadradic curve into two curves at t.
|
void |
Segment.subdivide(double t,
Segment s0,
Segment s1) |
void |
Cubic.subdivide(Segment s0,
Segment s1)
Subdivides this Cubic curve into two curves at t = 0.5.
|
void |
Linear.subdivide(Segment s0,
Segment s1)
Subdivides this Linear segment into two segments at t = 0.5.
|
void |
Quadradic.subdivide(Segment s0,
Segment s1)
Subdivides this Quadradic curve into two curves at t = 0.5.
|
void |
Segment.subdivide(Segment s0,
Segment s1) |
Copyright © 2022 Apache Software Foundation. All Rights Reserved.