From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: "Peter" Newsgroups: gmane.emacs.devel Subject: Re: Stylus drawing input? Date: Sat, 14 Jan 2023 10:38:50 +0100 Message-ID: <87tu0t78wl.fsf@nexoid.at> References: <87pmbhpjkc.fsf@web.de> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="28568"; mail-complaints-to="usenet@ciao.gmane.io" Cc: Dov Grobgeld , emacs-devel@gnu.org To: "Dr. Arne Babenhauserheide" , rms@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Sat Jan 14 10:39:35 2023 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1pGd0f-0007CF-9k for ged-emacs-devel@m.gmane-mx.org; Sat, 14 Jan 2023 10:39:33 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1pGd09-0006em-B9; Sat, 14 Jan 2023 04:39:01 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pGd04-0006eN-Op for emacs-devel@gnu.org; Sat, 14 Jan 2023 04:38:56 -0500 Original-Received: from www.nexoid.at ([178.79.130.240] helo=nexoid.at) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pGd02-0003Rq-Sk; Sat, 14 Jan 2023 04:38:56 -0500 DKIM-Filter: OpenDKIM Filter v2.10.3 nexoid.at 716E125EF1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nexoid.at; s=mail; t=1673689131; bh=jRIuLJKQw55Gpp5ROJ+xcJ9/9PQwtgFqrrxNCZSUgok=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=YginJmNlTo6hNsODe39Laatv17m6GkRK5W9geKMyEVBD8aVYFtDV4hxx1fjtxtTSF 6n0BAN8SVZ6cnKk5gPpSMhRrc6wm56q913cX05LlCzoZXMtkDfAIX2tbHD+0jrG2KN KafzDbAl6tpwJhcdkcZOhgmQJXod51CTqqs4v1a/2s0j+Ft1Ne/0atbxVGZ5JPfjNl T7riiuhmZCF9PWgAHuS5Qd3e4DEOX9g1w+EwkAF3YuoRYClvISs3C5fEs9xzSpdhbM 1FKpRh1pgBzQ6Jp4/evS9oU/bScueoWWXJ9vlP/sdiXBc6u9+asqsIxh7iWMGI7cUL BJfesWSe+lebw== In-Reply-To: <87pmbhpjkc.fsf@web.de> Received-SPF: none client-ip=178.79.130.240; envelope-from=emacs@nexoid.at; helo=nexoid.at X-Spam_score_int: -16 X-Spam_score: -1.7 X-Spam_bar: - X-Spam_report: (-1.7 / 5.0 requ) BAYES_00=-1.9, DKIM_INVALID=0.1, DKIM_SIGNED=0.1, SPF_HELO_NONE=0.001, SPF_NONE=0.001 autolearn=no autolearn_force=no X-Spam_action: no action X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.devel:302411 Archived-At: > I remember trying out an input in emacs for drawing letters that then > got inserted into the buffer, but I now searched for an hour and did not > find it again. > Just writing here to note that such a thing existed and it was pretty > awesome to just run a command, draw a picture in emacs, and have it > inserted into the current text. strokes.el (part of Emacs) could maybe be used to do this, when capturing a new stroke it keeps track of the full path (and even can generate a small image showing the path). Best wishes, Peter