If you need to convert from java.util.Date to java.time.LocalDate, you may use this method. public LocalDate asLocalDate(Date date) { Instant instant = date.toInstant(); ZonedDateTime zdt = instant.atZone(ZoneId.systemDefault()); return zdt.toLocalDate(); } With a version prior to...
#Rhino Python code to make an interpolated hyperboloidimportscriptcontextimportRhinoimportmathdef get_hyperboloid(a, b, c, depth) :"""Create revolved surface from hyperbola.Scale to match proportions of hyperboloid."""detail_u = 10 detail_v = 10 pts = list()foruinrange(int(detail_u)):for...