-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3556 from JuliaReach/schillic/LineSegment
Outsource `LineSegment` to its own module
- Loading branch information
Showing
26 changed files
with
566 additions
and
490 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,95 @@ | ||
```@meta | ||
CurrentModule = LazySets | ||
CurrentModule = LazySets.LineSegmentModule | ||
``` | ||
|
||
# [Line segment (LineSegment)](@id def_LineSegment) | ||
|
||
```@docs | ||
LineSegment | ||
dim(::LineSegment) | ||
σ(::AbstractVector, ::LineSegment) | ||
ρ(::AbstractVector, ::LineSegment) | ||
∈(::AbstractVector, ::LineSegment) | ||
center(::LineSegment) | ||
an_element(::LineSegment) | ||
rand(::Type{LineSegment}) | ||
center(::LineSegment) | ||
constraints_list(::LineSegment) | ||
dim(::LineSegment) | ||
generators(::LineSegment) | ||
genmat(::LineSegment) | ||
halfspace_left(::LineSegment) | ||
halfspace_right(::LineSegment) | ||
ngens(::LineSegment) | ||
rand(::Type{LineSegment}) | ||
vertices_list(::LineSegment) | ||
constraints_list(::LineSegment) | ||
∈(::AbstractVector, ::LineSegment) | ||
σ(::AbstractVector, ::LineSegment) | ||
ρ(::AbstractVector, ::LineSegment) | ||
translate(::LineSegment, ::AbstractVector) | ||
generators(::LineSegment) | ||
ngens(::LineSegment) | ||
genmat(::LineSegment) | ||
intersection(::LineSegment, ::LineSegment) | ||
isdisjoint(::LineSegment, ::LineSegment) | ||
``` | ||
|
||
```@meta | ||
CurrentModule = LazySets.API | ||
``` | ||
|
||
Undocumented implementations: | ||
* [`isoperationtype`](@ref isoperationtype(::Type{LazySet})) | ||
|
||
```@meta | ||
CurrentModule = LazySets | ||
``` | ||
|
||
Inherited from [`LazySet`](@ref): | ||
* [`area`](@ref area(::LazySet)) | ||
* [`complement`](@ref complement(::LazySet)) | ||
* [`concretize`](@ref concretize(::LazySet)) | ||
* [`constraints`](@ref constraints(::LazySet)) | ||
* [`convex_hull`](@ref convex_hull(::LazySet)) | ||
* [`diameter`](@ref diameter(::LazySet, ::Real)) | ||
* [`eltype`](@ref eltype(::Type{<:LazySet})) | ||
* [`eltype`](@ref eltype(::LazySet)) | ||
* [`high`](@ref high(::LazySet)) | ||
* [`isoperation`](@ref isoperation(::LazySet)) | ||
* [`low`](@ref low(::LazySet)) | ||
* [`norm`](@ref norm(::LazySet, ::Real)) | ||
* [`radius`](@ref radius(::LazySet, ::Real)) | ||
* [`diameter`](@ref diameter(::LazySet, ::Real)) | ||
* [`singleton_list`](@ref singleton_list(::LazySet)) | ||
* [`high`](@ref high(::LazySet, ::Int)) | ||
* [`low`](@ref low(::LazySet, ::Int)) | ||
* [`reflect`](@ref reflect(::LazySet)) | ||
* [`singleton_list`](@ref singleton_list(::LazySet)) | ||
* [`surface`](@ref surface(::LazySet)) | ||
* [`vertices`](@ref vertices(::LazySet)) | ||
* [`affine_map`](@ref affine_map(::AbstractMatrix, ::LazySet, ::AbstractVector)) | ||
* [`exponential_map`](@ref exponential_map(::AbstractMatrix, ::LazySet)) | ||
* [`is_interior_point`](@ref is_interior_point(::AbstractVector, ::LazySet)) | ||
* [`sample`](@ref sample(::LazySet, ::Int)) | ||
* [`scale`](@ref scale(::Real, ::LazySet)) | ||
* [`≈`](@ref ≈(::LazySet, ::LazySet)) | ||
* [`==`](@ref ==(::LazySet, ::LazySet)) | ||
* [`isequivalent`](@ref isequivalent(::LazySet, ::LazySet)) | ||
* [`⊂`](@ref ⊂(::LazySet, ::LazySet)) | ||
|
||
Inherited from [`ConvexSet`](@ref): | ||
* [`high`](@ref high(::ConvexSet, ::Int)) | ||
* [`low`](@ref low(::ConvexSet, ::Int)) | ||
* [`linear_combination`](@ref linear_combination(::ConvexSet, ::ConvexSet)) | ||
|
||
Inherited from [`AbstractPolyhedron`](@ref): | ||
* [`is_polyhedral`](@ref is_polyhedral(::AbstractPolyhedron)) | ||
|
||
Inherited from [`AbstractPolytope`](@ref): | ||
* [`isbounded`](@ref isbounded(::AbstractPolytope)) | ||
* [`isboundedtype`](@ref isboundedtype(::Type{AbstractPolytope})) | ||
* [`isconvextype`](@ref isconvextype(::Type{AbstractPolytope})) | ||
* [`volume`](@ref volume(::AbstractPolytope)) | ||
|
||
Inherited from [`AbstractCentrallySymmetricPolytope`](@ref): | ||
* [`center`](@ref center(::AbstractCentrallySymmetricPolytope, ::Int)) | ||
* [`extrema`](@ref extrema(::AbstractCentrallySymmetricPolytope)) | ||
* [`extrema`](@ref extrema(::AbstractCentrallySymmetricPolytope, ::Int)) | ||
* [`isempty`](@ref isempty(::AbstractCentrallySymmetricPolytope)) | ||
* [`isuniversal`](@ref isuniversal(::AbstractCentrallySymmetricPolytope)) | ||
|
||
Inherited from [`AbstractZonotope`](@ref): | ||
* [`linear_map`](@ref linear_map(::AbstractMatrix, ::AbstractZonotope)) | ||
* [`order`](@ref order(::AbstractZonotope)) | ||
* [`reflect`](@ref reflect(::AbstractZonotope)) | ||
* [`togrep`](@ref togrep(::AbstractZonotope)) | ||
* [`linear_map`](@ref linear_map(::AbstractMatrix, ::AbstractZonotope)) | ||
* [`cartesian_product`](@ref cartesian_product(::AbstractZonotope, ::AbstractZonotope)) | ||
* [`minkowski_difference`](@ref minkowski_difference(::AbstractZonotope, ::AbstractZonotope)) | ||
* [`minkowski_sum`](@ref minkowski_sum(::AbstractZonotope, ::AbstractZonotope)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.