Skip to content

Commit

Permalink
version 2.0.1.1 from CRAN
Browse files Browse the repository at this point in the history
  • Loading branch information
krlmlr committed Jan 31, 2024
1 parent ffe03b5 commit 09ab207
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: igraph
Version: 2.0.1
Version: 2.0.1.1
Title: Network Analysis and Visualization
Authors@R: c(
person("Gábor", "Csárdi", , "csardi.gabor@gmail.com", role = "aut",
Expand Down
8 changes: 2 additions & 6 deletions R/plot.R
Original file line number Diff line number Diff line change
Expand Up @@ -863,7 +863,7 @@ igraph.Arrows <-
open = TRUE,
sh.adj = 0.1,
sh.lwd = 1,
sh.col = if (is.R()) par("fg") else 1,
sh.col = par("fg"),
sh.lty = 1,
h.col = sh.col,
h.col.bo = sh.col,
Expand All @@ -875,11 +875,7 @@ igraph.Arrows <-
{
cin <- size * par("cin")[2]
width <- width * (1.2 / 4 / cin)
uin <- if (is.R()) {
1 / xyinch()
} else {
par("uin")
}
uin <- 1 / xyinch()
x <- sqrt(seq(0, cin^2, length.out = floor(35 * cin) + 2))
delta <- sqrt(h.lwd) * par("cin")[2] * 0.005 ## has been 0.05
x.arr <- c(-rev(x), -x)
Expand Down

0 comments on commit 09ab207

Please sign in to comment.