Skip to content

Commit

Permalink
Merge pull request #3 from JuliaFEM/name_change
Browse files Browse the repository at this point in the history
Name changed from MiniBallNext to BoundingSphere
  • Loading branch information
TeroFrondelius authored Jul 12, 2018
2 parents d7433a9 + 5e931c4 commit 4d545da
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 14 deletions.
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
The MiniBallNext.jl package is licensed under the MIT "Expat" License:
The BoundingSphere.jl package is licensed under the MIT "Expat" License:

> Copyright (c) 2018: Jan Weidner.
>
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# MiniBallNext
# BoundingSphere

[![Build Status](https://travis-ci.org/jw3126/MiniBallNext.jl.svg?branch=master)](https://travis-ci.org/jw3126/MiniBallNext.jl)
[![codecov.io](https://codecov.io/github/jw3126/MiniBallNext.jl/coverage.svg?branch=master)](http://codecov.io/github/jw3126/MiniBallNext.jl?branch=master)
[![Build Status](https://travis-ci.org/JuliaFEM/BoundingSphere.jl.svg?branch=master)](https://travis-ci.org/JuliaFEM/BoundingSphere.jl)
[![codecov.io](https://codecov.io/github/JuliaFEM/BoundingSphere.jl/coverage.svg?branch=master)](http://codecov.io/github/JuliaFEM/BoundingSphere.jl?branch=master)
## Usage
```julia
using MiniBallNext
using BoundingSphere

pts = [randn(3) for _ in 1:10]
center, radius = miniball(pts)
Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ build_script:
# Need to convert from shallow to complete for Pkg.clone to work
- IF EXIST .git\shallow (git fetch --unshallow)
- C:\projects\julia\bin\julia -e "versioninfo();
Pkg.clone(pwd(), \"MiniBallNext\"); Pkg.build(\"MiniBallNext\")"
Pkg.clone(pwd(), \"BoundingSphere\"); Pkg.build(\"BoundingSphere\")"

test_script:
- C:\projects\julia\bin\julia -e "Pkg.test(\"MiniBallNext\")"
- C:\projects\julia\bin\julia -e "Pkg.test(\"BoundingSphere\")"
2 changes: 1 addition & 1 deletion src/MiniBallNext.jl → src/BoundingSphere.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__precompile__()
module MiniBallNext
module BoundingSphere

include("api.jl")
include("boundary.jl")
Expand Down
2 changes: 1 addition & 1 deletion src/api.jl
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Compute the smallest sphere that contains each point in `pts`.
# Arguments
* pts: A list of points. Points should be vectors with floating point entries.
* algorithm: An optional algorithm to do the computation. See names(MiniBallNext) to get
* algorithm: An optional algorithm to do the computation. See names(BoundingSphere) to get
"""
function miniball end

Expand Down
5 changes: 2 additions & 3 deletions test/perf.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using MiniBallNext
using MiniBallNext
const MB = MiniBallNext
using BoundingSphere
const MB = BoundingSphere
using BenchmarkTools
using StaticArrays

Expand Down
4 changes: 2 additions & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using MiniBallNext
const MB = MiniBallNext
using BoundingSphere
const MB = BoundingSphere
using StaticArrays

@static if VERSION < v"0.7.0-DEV.2005"
Expand Down

0 comments on commit 4d545da

Please sign in to comment.