-
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 #3566 from JuliaReach/schillic/Line
Outsource `Line` to its own module
- Loading branch information
Showing
25 changed files
with
573 additions
and
508 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,45 @@ | ||
```@meta | ||
CurrentModule = LazySets | ||
CurrentModule = LazySets.LineModule | ||
``` | ||
|
||
# [Line](@id def_Line) | ||
|
||
```@docs | ||
Line | ||
dim(::Line) | ||
ρ(::AbstractVector, ::Line) | ||
σ(::AbstractVector, ::Line) | ||
∈(::AbstractVector, ::Line) | ||
``` | ||
|
||
## Operations | ||
|
||
```@docs | ||
an_element(::Line) | ||
constraints_list(::Line) | ||
dim(::Line) | ||
direction(::Line) | ||
rand(::Type{Line}) | ||
isbounded(::Line) | ||
isuniversal(::Line; ::Bool=false) | ||
isempty(::Line) | ||
constraints_list(::Line) | ||
translate!(::Line, ::AbstractVector) | ||
isuniversal(::Line; ::Bool=false) | ||
normalize(::Line{N}, ::Real=N(2)) where{N} | ||
normalize!(::Line{N}, ::Real=N(2)) where{N} | ||
rand(::Type{Line}) | ||
distance(::AbstractVector, ::Line; ::Real=2.0) | ||
∈(::AbstractVector, ::Line) | ||
linear_map(::AbstractMatrix, ::Line) | ||
ρ(::AbstractVector, ::Line) | ||
σ(::AbstractVector, ::Line) | ||
translate!(::Line, ::AbstractVector) | ||
``` | ||
|
||
```@meta | ||
CurrentModule = LazySets | ||
``` | ||
|
||
Inherited from [`LazySet`](@ref): | ||
* [`low`](@ref low(::LazySet)) | ||
* [`diameter`](@ref diameter(::LazySet, ::Real)) | ||
* [`high`](@ref high(::LazySet)) | ||
* [`high`](@ref high(::LazySet, ::Int)) | ||
* [`low`](@ref low(::LazySet)) | ||
* [`low`](@ref low(::LazySet, ::Int)) | ||
* [`norm`](@ref norm(::LazySet, ::Real)) | ||
* [`radius`](@ref radius(::LazySet, ::Real)) | ||
* [`diameter`](@ref diameter(::LazySet, ::Real)) | ||
* [`low`](@ref low(::LazySet, ::Int)) | ||
* [`high`](@ref high(::LazySet, ::Int)) | ||
* [`reflect`](@ref reflect(::LazySet)) | ||
* [`translate`](@ref translate(::LazySet, ::AbstractVector)) |
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.